Mercurial > dive4elements > river
view flys-backend/src/main/java/de/intevation/flys/model/MinMaxWQ.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 | 9f92c42b7a81 |
children |
line wrap: on
line source
package de.intevation.flys.model; import java.io.Serializable; import java.math.BigDecimal; /** * Represents minmimum and maximum values for W and Q */ public class MinMaxWQ implements Serializable { private BigDecimal minw; private BigDecimal maxw; private BigDecimal minq; private BigDecimal maxq; /** * Default constuctor to indecate that no min and max w and q values * are available */ public MinMaxWQ() { } /** * Constructor for a new MinMaxWQ value * * @param minw Mimimim W * @param maxw Maximum W * @param minq Mimimim Q * @param maxq Maximum Q */ public MinMaxWQ( BigDecimal minw, BigDecimal maxw, BigDecimal minq, BigDecimal maxq) { this.minw = minw; this.maxw = maxw; this.minq = minq; this.maxq = maxq; } public BigDecimal getMinW() { return this.minw; } public BigDecimal getMaxW() { return this.maxw; } public BigDecimal getMinQ() { return this.minq; } public BigDecimal getMaxQ() { return this.maxq; } }