Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/state/describedata/DefaultSingleValueDescribeData.java @ 1145:dfe1ac687c7f tip
added tags
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:16:15 +0200 |
parents | f953c9a559d8 |
children |
line wrap: on
line source
/* * Copyright (c) 2010 by Intevation GmbH * * This program is free software under the LGPL (>=v2.1) * Read the file LGPL.txt coming with the software for details * or visit http://www.gnu.org/licenses/ if it does not exist. */ package de.intevation.gnv.state.describedata; /** * This is the default implementation of <code>SingleValueDescribeData</code>. * This object is used to store a single value for a specific name. * * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> */ public class DefaultSingleValueDescribeData implements SingleValueDescribeData { private static final long serialVersionUID = 3580176842483316917L; private String name = null; private String value = null; private String state = null; /** * Constructor to create new objects without a specific state. * * @param name The name of this object. * @param value The value of this object. */ public DefaultSingleValueDescribeData(String name, String value) { this(name, value, null); } /** * Constructor to create new objects with a specific state. * * @param name The name of this object. * @param value The value of this object. * @param state The state this object belongs to. */ public DefaultSingleValueDescribeData( String name, String value, String state ) { super(); this.name = name; this.value = value; this.state = state; } public String getName() { return this.name; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getState() { return this.state; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :