Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/WKmsImpl.java @ 4198:1cdbd8a0c994
Added two new tables ClickableQDTable and ClickableWTable and made Ws and Qs clickable in historical discharge calculation.
The new tables define listener interfaces (clicked lower or upper icon) to listen to user clicks.
In addition to this, there is an enum ClickMode with NONE, SINGLE and RANGE options, which allows to
specifiy, which icons are displayed in the tables. NONE means no icon for user clicks, SINGLE has 1
icon, RANGE 2 icons for lower and upper.
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 22 Oct 2012 13:31:25 +0200 |
parents | 44dc117aa2b7 |
children |
line wrap: on
line source
package de.intevation.flys.artifacts.model; import gnu.trove.TDoubleArrayList; import de.intevation.flys.utils.DataUtil; public class WKmsImpl extends NamedObjectImpl implements WKms { protected TDoubleArrayList kms; protected TDoubleArrayList ws; public WKmsImpl() { super(""); kms = new TDoubleArrayList(); ws = new TDoubleArrayList(); } /** * Create named, empty WKms. */ public WKmsImpl(String name) { super(name); kms = new TDoubleArrayList(); ws = new TDoubleArrayList(); } public WKmsImpl(int capacity) { super(""); kms = new TDoubleArrayList(capacity); ws = new TDoubleArrayList(capacity); } public WKmsImpl(TDoubleArrayList kms, TDoubleArrayList ws) { this(kms, ws, ""); } public WKmsImpl( TDoubleArrayList kms, TDoubleArrayList ws, String name ) { super(name); this.kms = kms; this.ws = ws; } /** * Add a W (in NN+m) for a km (in km). */ public void add(double km, double w) { kms.add(km); ws .add(w); } @Override public double getW(int index) { return ws.getQuick(index); } @Override public double getKm(int index) { return kms.getQuick(index); } @Override public boolean guessWaterIncreasing() { return guessWaterIncreasing(0.05f); } protected boolean guessWaterIncreasing(float factor) { return DataUtil.guessWaterIncreasing(ws, factor); } @Override public int size() { return kms.size(); } @Override public TDoubleArrayList allKms() { return kms; } @Override public TDoubleArrayList allWs() { return ws; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :