comparison gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/DefaultArtifactStatisticValue.java @ 32:0f4362d75e9e

Adding StatisticsOutput to the GUI gnv/trunk@142 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 28 Sep 2009 09:36:02 +0000
parents
children ad381cc47217
comparison
equal deleted inserted replaced
31:ad739da2802b 32:0f4362d75e9e
1 /**
2 *
3 */
4 package de.intevation.gnv.artifactdatabase.objects;
5 /**
6 * @author Tim Englich <tim.englich@intevation.de>
7 *
8 */
9 public class DefaultArtifactStatisticValue implements ArtifactStatisticValue{
10
11
12 private String key = null;
13
14 private String value = null;
15
16
17 public DefaultArtifactStatisticValue(String key, String value) {
18 super();
19 this.key = key;
20 this.value = value;
21 }
22
23 public String getKey() {
24 return this.key;
25 }
26
27 public String getValue() {
28 return this.value;
29 }
30
31 }

http://dive4elements.wald.intevation.org