comparison gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/InputParameter.java @ 690:254f062e334b

Added JavaDoc. gnv/trunk@908 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Mon, 12 Apr 2010 16:45:16 +0000
parents 57fa8019fbdc
children 89ade245ca7a
comparison
equal deleted inserted replaced
689:8487581dfe3b 690:254f062e334b
1 package de.intevation.gnv.artifactdatabase.objects; 1 package de.intevation.gnv.artifactdatabase.objects;
2 2
3 import java.io.Serializable; 3 import java.io.Serializable;
4 4
5 /** 5 /**
6 * <code>InputParameter</code> objects are used to store multiple values for a
7 * single key.
8 *
6 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> 9 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
7 *
8 */ 10 */
9 public interface InputParameter extends Serializable { 11 public interface InputParameter extends Serializable {
10 12
13 /**
14 * Returns the name of the input parameter.
15 *
16 * @return the name.
17 */
11 public String getName(); 18 public String getName();
12 19
20 /**
21 * Returns the values of this input parameter as array.
22 *
23 * @return the values as array.
24 */
13 public String[] getValues(); 25 public String[] getValues();
14
15 } 26 }
27 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org