comparison gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/DefaultInputParameter.java @ 12:4ebe57b170d3

Integration of moving through the Artifact-States and rendering the UI. gnv/trunk@91 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Wed, 16 Sep 2009 07:44:26 +0000
parents
children ad381cc47217
comparison
equal deleted inserted replaced
11:3cb753564552 12:4ebe57b170d3
1 /**
2 *
3 */
4 package de.intevation.gnv.artifactdatabase.objects;
5 /**
6 * @author Tim Englich <tim.englich@intevation.de>
7 *
8 */
9 public class DefaultInputParameter implements InputParameter {
10
11
12 private String name = null;
13
14 private String[] values = null;
15
16 /**
17 * Constructor
18 * @param name
19 * @param values
20 */
21 public DefaultInputParameter(String name, String[] values) {
22 super();
23 this.name = name;
24 this.values = values;
25 }
26
27 /**
28 * @see de.intevation.gnv.artifactdatabase.objects.InputParameter#getName()
29 */
30 public String getName() {
31 return this.name;
32 }
33
34 /**
35 * @see de.intevation.gnv.artifactdatabase.objects.InputParameter#getValues()
36 */
37 public String[] getValues() {
38 return this.values;
39 }
40
41 }

http://dive4elements.wald.intevation.org