view artifacts/src/main/java/org/dive4elements/river/artifacts/model/minfo/SedimentDensityValue.java @ 8273:5c3b36b519d0

Add metadata to bedheight facets in bed height differences.
author "Tom Gottfried <tom@intevation.de>"
date Tue, 16 Sep 2014 11:33:08 +0200
parents 88b3eb292a1d
children
line wrap: on
line source
/* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde
 * Software engineering by Intevation GmbH
 *
 * This file is Free Software under the GNU AGPL (>=v3)
 * and comes with ABSOLUTELY NO WARRANTY! Check out the
 * documentation coming with Dive4Elements River for details.
 */

package org.dive4elements.river.artifacts.model.minfo;
import java.io.Serializable;

/** A density value at a km, year. */
public class SedimentDensityValue implements Serializable
{

    private double km;
    private double density;
    private int year;

    public SedimentDensityValue() {
        this.km = 0d;
        this.density = 0d;
        this.year = 0;
    }

    public SedimentDensityValue(double km, double density, int year) {
        this.km = km;
        this.density = density;
        this.year = year;
    }

    public double getKm() {
        return km;
    }

    public void setKm(double km) {
        this.km = km;
    }

    public double getDensity() {
        return density;
    }

    public void setDensity(double density) {
        this.density = density;
    }

    public int getYear() {
        return year;
    }

    public void setYear(int year) {
        this.year = year;
    }
}

http://dive4elements.wald.intevation.org