comparison gnv-artifacts/src/main/java/de/intevation/gnv/transition/describedata/DefaultSingleValueDescribeData.java @ 81:9b41f3688610

Added Support for TimeSeriesMesh gnv-artifacts/trunk@106 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 21 Sep 2009 11:50:47 +0000
parents
children 7fb9441dd8af
comparison
equal deleted inserted replaced
80:29a7ba731838 81:9b41f3688610
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 }

http://dive4elements.wald.intevation.org