comparison gnv-artifacts/src/main/java/de/intevation/gnv/state/describedata/DefaultSingleValueDescribeData.java @ 376:d8f3ef441bf2

merged gnv-artifacts/0.3
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 28 Sep 2012 12:13:47 +0200
parents e964a3d8f7bc
children a6a33ef35809
comparison
equal deleted inserted replaced
293:6b0ef2324d02 376:d8f3ef441bf2
1 /**
2 *
3 */
4 package de.intevation.gnv.state.describedata;
5
6 /**
7 * @author Tim Englich <tim.englich@intevation.de>
8 *
9 */
10 public class DefaultSingleValueDescribeData implements SingleValueDescribeData {
11
12 /**
13 *
14 */
15 private static final long serialVersionUID = 3580176842483316917L;
16
17 private String name = null;
18
19 private String value = null;
20
21 /**
22 * Constructor
23 *
24 * @param name
25 * @param value
26 */
27 public DefaultSingleValueDescribeData(String name, String value) {
28 super();
29 this.name = name;
30 this.value = value;
31 }
32
33 /**
34 * @see de.intevation.gnv.state.describedata.SingleValueDescribeData#getName()
35 */
36 public String getName() {
37 return this.name;
38 }
39
40 /**
41 * @see de.intevation.gnv.state.describedata.SingleValueDescribeData#getValue()
42 */
43 public String getValue() {
44 return this.value;
45 }
46
47 public void setValue(String value) {
48 this.value = value;
49 }
50
51 }

http://dive4elements.wald.intevation.org