Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/state/ExtendedInputData.java @ 805:bb7afd783321
Removed trailing whitespace. Added more javadoc.
gnv-artifacts/trunk@887 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Thu, 08 Apr 2010 11:31:44 +0000 |
parents | feae2f9d6c6f |
children | f953c9a559d8 |
line wrap: on
line source
package de.intevation.gnv.state; /** * This class is used to save the relation between two attributes. Mainly used * to save the relation between a measurement and the parameter it belongs to. * * @see MeasurementState * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> */ public class ExtendedInputData extends DefaultInputData { /** * The separater used to separate measurement ids and parameter ids. */ public static final String SEPARATOR = ";"; /** * The parameter this object belongs to. */ protected String parameterid; /** * Constructcor. * * @param name * @param value * @param object * @param parameterid */ public ExtendedInputData( String name, String value, Object object, String parameterid) { super(name, value, object); this.parameterid = parameterid; } /** * Return the parameter ids this object belongs to. * * @return the parameter id. */ public String getParameterID() { return parameterid; } /** * Set the parameter ids. * * @param parameterid Parameter ids. */ public void setParameter(String parameterid) { this.parameterid = parameterid; } /** * Return all parameter ids as array. * * @return Array of parameter ids. */ public String[] splitParameter() { if (parameterid != null) return parameterid.split(SEPARATOR); return null; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :