view flys-client/src/main/java/de/intevation/flys/client/shared/model/IntegerProperty.java @ 4241:49cb65d5932d

Improved the historical discharge calculation. The calculation now creates new HistoricalWQKms (new subclass of WQKms). Those WQKms are used to create new facets from (new) type 'HistoricalDischargeCurveFacet'. The chart generator is improved to support those facets.
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 24 Oct 2012 14:34:35 +0200
parents c21d14e48040
children
line wrap: on
line source
package de.intevation.flys.client.shared.model;

import java.util.HashMap;

/**
 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a>
 */
public class IntegerProperty extends PropertySetting {

    /**
     * Create a new IntegerProperty for settings.
     */
    public IntegerProperty() {
        this.attributes = new HashMap<String, String>();
    }


    /**
     * Create a new IntegerProperty.
     * @param name The attribute name.
     * @param value The current value.
     */
    public IntegerProperty(
        String name,
        Integer value)
    {
        this.name = name;
        this.value = value.toString();
        this.attributes = new HashMap<String, String>();
    }


    @Override
    public Integer getValue() {
        try {
            return Integer.valueOf(this.value);
        }
        catch(NumberFormatException nfe) {
            return null;
        }
    }


    public void setValue(Integer value) {
        this.value = value.toString();
    }

    public Object clone() {
        IntegerProperty clone = new IntegerProperty(this.getName(),
                                                    this.getValue());
        for(String s: this.getAttributeList()) {
            clone.setAttribute(s, this.getAttribute(s));
        }
        return clone;
    }

}

http://dive4elements.wald.intevation.org