view flys-client/src/main/java/de/intevation/flys/client/shared/model/SedimentLoadInfoObjectImpl.java @ 6987:4126ff35beb8 interaktive-karte

Closing branch 'interaktive-karte', the contents must have been merged (without hg tracking it) to default long ago because it is in there.
author Bernhard Reiter <bernhard@intevation.de>
date Wed, 11 Sep 2013 11:41:29 +0200
parents 1f98a3a89e13
children
line wrap: on
line source
package de.intevation.flys.client.shared.model;


/**
 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a>
 */
public class SedimentLoadInfoObjectImpl implements SedimentLoadInfoObject {

    protected String description;
    protected String dateString;

    public SedimentLoadInfoObjectImpl() {
    }

    public SedimentLoadInfoObjectImpl(
        String description,
        String dateString
    ) {
        this.description = description;
        this.dateString = dateString;
    }

    public String getDescription() {
        return description;
    }

    public String getDate() {
        return this.dateString;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org