Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/transition/describedata/DefaultSingleValueDescribeData.java @ 127:f6f0e4ce4a35
merged gnv-artifacts/0.1
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:41 +0200 |
parents | 9b41f3688610 |
children | 7fb9441dd8af |
comparison
equal
deleted
inserted
replaced
49:94a07d1d9316 | 127:f6f0e4ce4a35 |
---|---|
1 /** | |
2 * | |
3 */ | |
4 package de.intevation.gnv.transition.describedata; | |
5 /** | |
6 * @author Tim Englich <tim.englich@intevation.de> | |
7 * | |
8 */ | |
9 public class DefaultSingleValueDescribeData implements SingleValueDescribeData { | |
10 | |
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 * @param name | |
24 * @param value | |
25 */ | |
26 public DefaultSingleValueDescribeData(String name, String value) { | |
27 super(); | |
28 this.name = name; | |
29 this.value = value; | |
30 } | |
31 | |
32 /** | |
33 * @see de.intevation.gnv.transition.describedata.SingleValueDescribeData#getName() | |
34 */ | |
35 public String getName() { | |
36 return this.name; | |
37 } | |
38 | |
39 /** | |
40 * @see de.intevation.gnv.transition.describedata.SingleValueDescribeData#getValue() | |
41 */ | |
42 public String getValue() { | |
43 return this.value; | |
44 } | |
45 | |
46 } |