001    // License: GPL. For details, see LICENSE file.
002    package org.openstreetmap.josm.data.osm;
003    
004    import org.openstreetmap.josm.data.coor.EastNorth;
005    import org.openstreetmap.josm.data.coor.LatLon;
006    
007    public interface INode extends IPrimitive {
008    
009        LatLon getCoor();
010        void setCoor(LatLon coor);
011        EastNorth getEastNorth();
012        void setEastNorth(EastNorth eastNorth);
013    }