- Timestamp:
- 2008-11-27T00:28:27+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/coor/Coordinate.java
r1004 r1094 3 3 4 4 import java.awt.geom.Point2D; 5 import java.io.Serializable; 5 6 6 7 /** 7 8 * Base class of points of both coordinate systems. 8 9 * 9 * The variables are default package protected to allow routines in the data package10 * to access them directly. 10 * The variables are default package protected to allow routines in the 11 * data package to access them directly. 11 12 * 12 * As the class itself is package protected too, it is not visible outside of the data 13 * package. Routines there should only use LatLon or EastNorth 13 * As the class itself is package protected too, it is not visible 14 * outside of the data package. Routines there should only use LatLon or 15 * EastNorth. 14 16 * 15 17 * @author imi 16 18 */ 17 abstract class Coordinate extends Point2D { 19 abstract class Coordinate extends Point2D implements Serializable { 18 20 19 21 protected double x;
Note:
See TracChangeset
for help on using the changeset viewer.