// License: GPL. Copyright 2007 by Immanuel Scholz and others
package org.openstreetmap.josm.data.coor;

/**
 * Northern, Easting of the projected coordinates.
 * 
 * This class is immutable.
 * 
 * @author Imi
 */
public class EastNorth extends Coordinate {

	public EastNorth(double east, double north) {
		super(east,north);
	}
	
	public double east() {
		return x;
	}

	public double north() {
		return y;
	}
	
	@Override public String toString() {
		return "EastNorth[e="+x+", n="+y+"]";
	}
}
