Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/state/describedata/SingleValueDescribeData.java @ 875:5e9efdda6894
merged gnv-artifacts/1.0
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:56 +0200 |
parents | 05bf8534a35a |
children | f953c9a559d8 |
comparison
equal
deleted
inserted
replaced
722:bb3ffe7d719e | 875:5e9efdda6894 |
---|---|
1 package de.intevation.gnv.state.describedata; | |
2 | |
3 /** | |
4 * This interface defines some methods to store and retrieve key-value pairs. | |
5 * | |
6 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> | |
7 */ | |
8 public interface SingleValueDescribeData extends DescribeData { | |
9 | |
10 /** | |
11 * Returns the name of this object. | |
12 * | |
13 * @return the name. | |
14 */ | |
15 public String getName(); | |
16 | |
17 /** | |
18 * Returns the value stored in this object. | |
19 * | |
20 * @return the value. | |
21 */ | |
22 public String getValue(); | |
23 | |
24 /** | |
25 * Sets the value of this object to <i>value</i>. | |
26 * | |
27 * @param value A new value. | |
28 */ | |
29 public void setValue(String value); | |
30 | |
31 /** | |
32 * Returns the state this objects belongs to. | |
33 * | |
34 * @return the state. | |
35 */ | |
36 public String getState(); | |
37 } | |
38 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |