source: josm/src/org/openstreetmap/josm/data/osm/Node.java@ 1

Last change on this file since 1 was 1, checked in by imi, 21 years ago

wiki 19:37, 27. Sep 2005

File size: 290 bytes
Line 
1package org.openstreetmap.josm.data.osm;
2
3import org.openstreetmap.josm.data.GeoPoint;
4
5
6/**
7 * One node data, consisting of one world coordinate waypoint.
8 *
9 * @author imi
10 */
11public class Node extends OsmPrimitive {
12
13 /**
14 * The coordinates of this node.
15 */
16 public GeoPoint coor;
17}
Note: See TracBrowser for help on using the repository browser.