Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/WKmsImpl.java @ 4641:f3325079dacc
Improve the up and down arrows in the theme navigation panel
Don't stretch the arrow icons and fit to their actual size. Also put the up
buttons on the left and the down buttons on the right.
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Tue, 04 Dec 2012 16:16:43 +0100 |
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 :