view flys-client/src/main/java/de/intevation/flys/client/shared/model/IntegerProperty.java @ 3847:f3b821735e39

Calculate the info url via i18n Don't fetch the info url from the artifact service and use i18n to calculate the url by using the official gauge and river number. flys-client/trunk@5582 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Bjoern Ricks <bjoern.ricks@intevation.de>
date Mon, 24 Sep 2012 08:39:22 +0000
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