comparison gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/DefaultArtifactStatisticsSet.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
14 /** 14 /**
15 * The UID of this Class. 15 * The UID of this Class.
16 */ 16 */
17 private static final long serialVersionUID = 6738878381515708602L; 17 private static final long serialVersionUID = 6738878381515708602L;
18 18
19 /**
20 * The name of the StatisticsSet.
21 */
19 private String name = null; 22 private String name = null;
20 23
24 /**
25 * The statisticsvalues which belong to this set.
26 */
21 private Collection<ArtifactStatisticValue> statisticValues = 27 private Collection<ArtifactStatisticValue> statisticValues =
22 new ArrayList<ArtifactStatisticValue>(); 28 new ArrayList<ArtifactStatisticValue>();
23 /** 29 /**
24 * Constructor 30 * Constructor
31 * @param name the name of the StatisticsSet
25 */ 32 */
26 public DefaultArtifactStatisticsSet(String name) { 33 public DefaultArtifactStatisticsSet(String name) {
27 this.name = name; 34 this.name = name;
28 } 35 }
29 36

http://dive4elements.wald.intevation.org