comparison gnv-artifacts/src/main/java/de/intevation/gnv/transition/DefaultInputData.java @ 171:7fb9441dd8af

Format Code to max 80 Chars per Row and Cleanup gnv-artifacts/trunk@208 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Fri, 09 Oct 2009 07:54:48 +0000
parents 969faa37a11b
children
comparison
equal deleted inserted replaced
170:7be22e76c270 171:7fb9441dd8af
1 /** 1 /**
2 * 2 *
3 */ 3 */
4 package de.intevation.gnv.transition; 4 package de.intevation.gnv.transition;
5
5 /** 6 /**
6 * @author Tim Englich <tim.englich@intevation.de> 7 * @author Tim Englich <tim.englich@intevation.de>
7 * 8 *
8 */ 9 */
9 public class DefaultInputData implements InputData { 10 public class DefaultInputData implements InputData {
10 11
11
12 /** 12 /**
13 * 13 *
14 */ 14 */
15 private static final long serialVersionUID = 4308041648698108066L; 15 private static final long serialVersionUID = 4308041648698108066L;
16 private String name = null; 16 private String name = null;
17 private String value = null; 17 private String value = null;
18
18 /** 19 /**
19 * Constructor 20 * Constructor
20 */ 21 */
21 public DefaultInputData(String name , String value ) { 22 public DefaultInputData(String name, String value) {
22 this.name = name; 23 this.name = name;
23 this.value = value; 24 this.value = value;
24 } 25 }
25 26
26 /** 27 /**
40 /** 41 /**
41 * @see java.lang.Object#toString() 42 * @see java.lang.Object#toString()
42 */ 43 */
43 @Override 44 @Override
44 public String toString() { 45 public String toString() {
45 return this.name + "==> "+ this.value; 46 return this.name + "==> " + this.value;
46 } 47 }
47 48
48 /** 49 /**
49 * @see de.intevation.gnv.transition.InputData#concartValue(java.lang.String) 50 * @see de.intevation.gnv.transition.InputData#concartValue(java.lang.String)
50 */ 51 */
51 public void concartValue(String value) { 52 public void concartValue(String value) {
52 this.value = this.value +" , "+value; 53 this.value = this.value + " , " + value;
53 } 54 }
54 55
55 } 56 }

http://dive4elements.wald.intevation.org