view gnv-artifacts/src/main/java/de/intevation/gnv/transition/describedata/DefaultKeyValueDescribeData.java @ 67:0e9762ebd18d

Refactor ChartFactory so that it is able to be compiled without errors. gnv-artifacts/trunk@50 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Wed, 09 Sep 2009 13:14:12 +0000
parents
children 0e38f512f7e4
line wrap: on
line source
/**
 *
 */
package de.intevation.gnv.transition.describedata;
/**
 * @author Tim Englich <tim.englich@intevation.de>
 *
 */
public class DefaultKeyValueDescribeData implements KeyValueDescibeData {

    private int key;
    
    private String value = null;
    
    public DefaultKeyValueDescribeData(int key, String value) {
        super();
        this.key = key;
        this.value = value;
    }

    /**
     * @see de.intevation.gnv.transition.describedata.KeyValueDescibeData#getKey()
     */
    public int getKey() {
       return this.key;
    }

    /**
     * @see de.intevation.gnv.transition.describedata.KeyValueDescibeData#getValue()
     */
    public String getValue() {
        return this.value;
    }

}

http://dive4elements.wald.intevation.org