view gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/DefaultArtifactStatisticValue.java @ 693:d4d1eb56d725

Added more JavaDocs gnv/trunk@919 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Tue, 13 Apr 2010 12:10:15 +0000
parents 57fa8019fbdc
children d5d4dbda17cc
line wrap: on
line source
package de.intevation.gnv.artifactdatabase.objects;

/**
 * The Defaultimplementation of <code>ArtifactStatisticValue</code>
 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
 *
 */
public class DefaultArtifactStatisticValue implements ArtifactStatisticValue {

    /**
     * The UID of this Class.
     */
    private static final long serialVersionUID = -8409111023127835398L;

    private String key = null;

    private String value = null;

    /**
     * Constructor
     * @param key the key of the new Value
     * @param value the value of the Object.
     */
    public DefaultArtifactStatisticValue(String key, String value) {
        super();
        this.key = key;
        this.value = value;
    }

    public String getKey() {
        return this.key;
    }

    public String getValue() {
        return this.value;
    }
}

http://dive4elements.wald.intevation.org