view gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/DefaultArtifactStatisticValue.java @ 958:d5d4dbda17cc

Add more Javadocs gnv/trunk@1102 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Tue, 18 May 2010 09:51:41 +0000
parents d4d1eb56d725
children 28a0628b11b0
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;

    /**
     * The key of the new Value.
     */
    private String key = null;

    /**
     * The value of the Object.
     */
    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