view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/HistoricalDischargeWQFacet.java @ 4372:19772b414d46

New facet and result set for sediment load. * Added new facet and updated sediment load config and facet types. * Added new result set for sediment load.
author Raimund Renkert <rrenkert@intevation.de>
date Fri, 02 Nov 2012 14:53:51 +0100
parents e4a415773b0a
children
line wrap: on
line source
package de.intevation.flys.artifacts.model;

import de.intevation.artifactdatabase.state.Facet;
import de.intevation.artifacts.Artifact;
import de.intevation.artifacts.CallContext;
import de.intevation.flys.artifacts.states.DefaultState.ComputeType;


/**
 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
 */
public class HistoricalDischargeWQFacet extends DataFacet {

    private double value;

    public HistoricalDischargeWQFacet() {
    }

    public HistoricalDischargeWQFacet(int index, String name,
        String description, ComputeType type, String hash, String stateId,
        double value) {

        super(index, name, description, type, hash, stateId);
        this.value = value;
    }

    @Override
    public Facet deepCopy() {
        HistoricalDischargeWQFacet copy = new HistoricalDischargeWQFacet();
        copy.set(this);
        copy.value = value;
        return copy;
    }

    @Override
    public Object getData(Artifact artifact, CallContext context) {
        return value;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :

http://dive4elements.wald.intevation.org