view flys-artifacts/src/main/java/de/intevation/flys/artifacts/math/Identity.java @ 3157:003940a7d6c9

I18N: Added script to make keys of property file identifiable with short numbers through the UI. flys-artifacts/trunk@4769 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Sun, 24 Jun 2012 10:55:00 +0000
parents c09c9e05ecfa
children
line wrap: on
line source
package de.intevation.flys.artifacts.math;

public final class Identity
implements         Function
{
    public static final Identity IDENTITY = new Identity();

    public Identity() {
    }

    public double value(double x) {
        return x;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org