comparison gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/DefaultArtifactStatisticValue.java @ 693:d4d1eb56d725

Added more JavaDocs gnv/trunk@919 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Tue, 13 Apr 2010 12:10:15 +0000
parents 57fa8019fbdc
children d5d4dbda17cc
comparison
equal deleted inserted replaced
692:22567e7fa381 693:d4d1eb56d725
1 package de.intevation.gnv.artifactdatabase.objects; 1 package de.intevation.gnv.artifactdatabase.objects;
2 2
3 /** 3 /**
4 * The Defaultimplementation of <code>ArtifactStatisticValue</code>
4 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> 5 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
5 * 6 *
6 */ 7 */
7 public class DefaultArtifactStatisticValue implements ArtifactStatisticValue { 8 public class DefaultArtifactStatisticValue implements ArtifactStatisticValue {
8 9
13 14
14 private String key = null; 15 private String key = null;
15 16
16 private String value = null; 17 private String value = null;
17 18
19 /**
20 * Constructor
21 * @param key the key of the new Value
22 * @param value the value of the Object.
23 */
18 public DefaultArtifactStatisticValue(String key, String value) { 24 public DefaultArtifactStatisticValue(String key, String value) {
19 super(); 25 super();
20 this.key = key; 26 this.key = key;
21 this.value = value; 27 this.value = value;
22 } 28 }
26 } 32 }
27 33
28 public String getValue() { 34 public String getValue() {
29 return this.value; 35 return this.value;
30 } 36 }
31
32 } 37 }

http://dive4elements.wald.intevation.org