source: josm/trunk/src/org/openstreetmap/josm/data/osm/INode.java@ 8510

Last change on this file since 8510 was 8510, checked in by Don-vip, 9 years ago

checkstyle: enable relevant whitespace checks and fix them

  • Property svn:eol-style set to native
File size: 367 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.osm;
3
4import org.openstreetmap.josm.data.coor.EastNorth;
5import org.openstreetmap.josm.data.coor.LatLon;
6
7public interface INode extends IPrimitive {
8
9 LatLon getCoor();
10
11 void setCoor(LatLon coor);
12
13 EastNorth getEastNorth();
14
15 void setEastNorth(EastNorth eastNorth);
16}
Note: See TracBrowser for help on using the repository browser.