comparison gnv-artifacts/src/main/java/de/intevation/gnv/transition/DefaultInputValue.java @ 55:6ded86ce30dd

Constructs for the required Inputvalues for an Transition created gnv-artifacts/trunk@37 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Tue, 08 Sep 2009 09:35:53 +0000
parents
children 737d8bf63701
comparison
equal deleted inserted replaced
54:09b4bf848c7b 55:6ded86ce30dd
1 /**
2 *
3 */
4 package de.intevation.gnv.transition;
5 /**
6 * @author Tim Englich <tim.englich@intevation.de>
7 *
8 */
9 public class DefaultInputValue implements InputValue {
10
11 private String name = null;
12 private String type = null;
13
14
15 /**
16 * Constructor
17 */
18 public DefaultInputValue(String name, String type){
19 this.name = name;
20 this.type = type;
21 }
22
23 /**
24 * @see de.intevation.gnv.transition.InputValue#getName()
25 */
26 public String getName() {
27 return this.name;
28 }
29
30 /**
31 * @see de.intevation.gnv.transition.InputValue#getType()
32 */
33 public String getType() {
34 return this.type;
35 }
36
37 }

http://dive4elements.wald.intevation.org