source: josm/trunk/src/org/openstreetmap/josm/data/osm/NodeData.java@ 2284

Last change on this file since 2284 was 2284, checked in by jttt, 15 years ago

Added PrimitiveData classes. Uses PrimitiveData as storage for Command's undo function

  • Property svn:mime-type set to text/plain
File size: 344 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.osm;
3
4import org.openstreetmap.josm.data.coor.LatLon;
5
6public class NodeData extends PrimitiveData {
7
8 private LatLon coor;
9
10 public LatLon getCoor() {
11 return coor;
12 }
13
14 public void setCoor(LatLon coor) {
15 this.coor = coor;
16 }
17
18}
Note: See TracBrowser for help on using the repository browser.