comparison flys-backend/src/main/java/de/intevation/flys/importer/parsers/tim/Coordinate.java @ 4748:ea8c3e6c9614

Coordinate: Introduce getters for x/y.
author Felix Wolfsteller <felix.wolfsteller@intevation.de>
date Thu, 03 Jan 2013 09:58:49 +0100
parents ce6b9945bf8e
children 99f9e371371b
comparison
equal deleted inserted replaced
4747:2a6d64a415e4 4748:ea8c3e6c9614
21 public Coordinate(double x, double y, double z) { 21 public Coordinate(double x, double y, double z) {
22 this.x = x; 22 this.x = x;
23 this.y = y; 23 this.y = y;
24 this.z = z; 24 this.z = z;
25 } 25 }
26
27 public double getX() {
28 return this.x;
29 }
30
31 public double getY() {
32 return this.y;
33 }
26 } 34 }
27 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : 35 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org