Mercurial > dive4elements > river
changeset 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 | 2a6d64a415e4 |
children | 3028037c6293 |
files | flys-backend/src/main/java/de/intevation/flys/importer/parsers/tim/Coordinate.java |
diffstat | 1 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/flys-backend/src/main/java/de/intevation/flys/importer/parsers/tim/Coordinate.java Thu Jan 03 09:58:16 2013 +0100 +++ b/flys-backend/src/main/java/de/intevation/flys/importer/parsers/tim/Coordinate.java Thu Jan 03 09:58:49 2013 +0100 @@ -23,5 +23,13 @@ this.y = y; this.z = z; } + + public double getX() { + return this.x; + } + + public double getY() { + return this.y; + } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :