Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/WKms.java @ 4247:5da024c2af62
Refactor GaugeOverviewInfoService and MeasurementStationInfoService
Refactor RiverInfoService out of GaugeOverviewInfoService and
MeasurementStationInfoService to share common code of both classes in a base
class.
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Wed, 24 Oct 2012 16:36:59 +0200 |
parents | 44dc117aa2b7 |
children | 4d457c68b1d3 |
line wrap: on
line source
package de.intevation.flys.artifacts.model; import gnu.trove.TDoubleArrayList; public interface WKms extends NamedObject { int size(); double getKm(int index); double getW(int index); TDoubleArrayList allKms(); TDoubleArrayList allWs(); public boolean guessWaterIncreasing(); } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :