Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/statistics/HorizontalCrossSectionStatistics.java @ 254:ce408af0ee57
Translated "Keine Auswahl" to "No Selection" according to the Specification that
the primary Language is english.
gnv-artifacts/trunk@329 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Thu, 12 Nov 2009 11:40:32 +0000 |
parents | 926530bda1a7 |
children | 5403452c06fc |
line wrap: on
line source
/** * */ package de.intevation.gnv.statistics; import java.sql.SQLException; import de.intevation.gnv.geobackend.base.Result; /** * @author Tim Englich <tim.englich@intevation.de> * */ public class HorizontalCrossSectionStatistics extends TimeseriesStatistics { /** * Constructor */ public HorizontalCrossSectionStatistics() { super(); } @Override protected double calculateXOrdinateValue(Result row) throws SQLException { return 0; // TODO: Select propper Value } }