view flys-client/src/main/java/de/intevation/flys/client/shared/model/DistanceInfoRecord.java @ 4241:49cb65d5932d

Improved the historical discharge calculation. The calculation now creates new HistoricalWQKms (new subclass of WQKms). Those WQKms are used to create new facets from (new) type 'HistoricalDischargeCurveFacet'. The chart generator is improved to support those facets.
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 24 Oct 2012 14:34:35 +0200
parents 1d20533a4ae3
children
line wrap: on
line source
package de.intevation.flys.client.shared.model;

import com.smartgwt.client.widgets.grid.ListGridRecord;


/**
 * The DistanceInfoRecord is a wrapper to put DistanceInfo objects into
 * a ListGrid.
 *
 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a>
 */
public class DistanceInfoRecord extends ListGridRecord {

    /** The artifact collection. */
    protected DistanceInfoObject distanceInfo;


    /**
     * The default constructor.
     *
     * @param info The distance info object.
     */
    public DistanceInfoRecord(DistanceInfoObject info) {
        this.distanceInfo = info;

        setDescription(info.getDescription());
        setFrom(info.getFrom());
        if (info.getTo() != null)
            setTo(info.getTo());
        else
            setTo(info.getFrom());
        setRiverside(info.getRiverside());
        setBottom(info.getBottom());
        setTop(info.getTop());
    }


    /**
     * Sets the creation time.
     *
     * @param creationTime The creation time.
     */
    public void setDescription(String description) {
        setAttribute("description", description);
    }


    /**
     * Returns the description.
     *
     * @return the description.
     */
    public String getDescription() {
        return getAttributeAsString("description");
    }


    public void setFrom(double from) {
        setAttribute("from", from);
    }


    public double getFrom() {
        return getAttributeAsDouble("from");
    }

    public void setTo(double to) {
        setAttribute("to", to);
    }


    public double getTo() {
        return getAttributeAsDouble("to");
    }


    public void setRiverside(String side) {
        setAttribute("riverside", side);
    }


    public String getRiverside() {
        return getAttributeAsString("riverside");
    }

    public void setBottom(Double bottom) {
        setAttribute("bottom", bottom != null ? bottom.toString() : "-");
    }

    public String getBottom() {
        return getAttributeAsString("bottom");
    }

    public void setTop(Double top) {
        setAttribute("top", top != null ? top.toString() : "-");
    }

    public String getTop() {
        return getAttributeAsString("top");
    }


    public DistanceInfoObject getDistanceInfo() {
        return distanceInfo;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org