view artifacts/src/main/java/org/dive4elements/river/artifacts/model/minfo/SedimentDensityValue.java @ 9801:1d7a72a50183 3.2.x tip

Assume Compose V2, consistently
author Tom Gottfried <tom@intevation.de>
date Thu, 23 Nov 2023 10:14:13 +0100
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