comparison gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/DefaultOutputParameter.java @ 958:d5d4dbda17cc

Add more Javadocs gnv/trunk@1102 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Tue, 18 May 2010 09:51:41 +0000
parents 89ade245ca7a
children 28a0628b11b0
comparison
equal deleted inserted replaced
957:33fb5bf4e62c 958:d5d4dbda17cc
10 /** 10 /**
11 * The UID of this Class. 11 * The UID of this Class.
12 */ 12 */
13 private static final long serialVersionUID = -8416057640116638152L; 13 private static final long serialVersionUID = -8416057640116638152L;
14 14
15 /**
16 * The name of the parameter
17 */
15 private String name = null; 18 private String name = null;
16 19
20 /**
21 * The value of the parameter
22 */
17 private String value = null; 23 private String value = null;
18 24
25 /**
26 * The description of the parameter
27 */
19 private String description = null; 28 private String description = null;
20 29
30 /**
31 * The type of the parameter
32 */
21 private String type = null; 33 private String type = null;
22 34
23 /** 35 /**
24 * Constructor 36 * Constructor
25 * 37 *
26 * @param name 38 * @param name The name of the parameter
27 * @param value 39 * @param value The value of the parameter
28 * @param description 40 * @param description The description of the parameter
41 * @param type The type of the parameter
29 */ 42 */
30 public DefaultOutputParameter(String name, String value, 43 public DefaultOutputParameter(String name, String value,
31 String description, String type) { 44 String description, String type) {
32 super(); 45 super();
33 this.name = name; 46 this.name = name;

http://dive4elements.wald.intevation.org