Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/NamedObjectImpl.java @ 4339:ff83ec9b4c0b
FixWQCurveGenerator: For extreme_wq_curves, add marker to indicate where extrapolation starts.
author | Felix Wolfsteller <felix.wolfsteller@intevation.de> |
---|---|
date | Wed, 31 Oct 2012 14:09:36 +0100 |
parents | 0cb1a70b8b92 |
children |
line wrap: on
line source
package de.intevation.flys.artifacts.model; public class NamedObjectImpl implements NamedObject { /** The name of this object.*/ protected String name; public NamedObjectImpl() { } public NamedObjectImpl(String name) { this.name = name; } @Override public void setName(String name) { this.name = name; } @Override public String getName() { return name; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :