comparison gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/ArtifactStatisticsSet.java @ 690:254f062e334b

Added JavaDoc. gnv/trunk@908 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Mon, 12 Apr 2010 16:45:16 +0000
parents 57fa8019fbdc
children af22fa5567a6
comparison
equal deleted inserted replaced
689:8487581dfe3b 690:254f062e334b
3 import java.io.Serializable; 3 import java.io.Serializable;
4 4
5 import java.util.Collection; 5 import java.util.Collection;
6 6
7 /** 7 /**
8 * An inteface description for a container storing statistics.
9 *
8 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> 10 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
9 *
10 */ 11 */
11 public interface ArtifactStatisticsSet extends Serializable { 12 public interface ArtifactStatisticsSet extends Serializable {
12 13
13 14 /**
15 * Retrieves the name of this container.
16 *
17 * @return the name.
18 */
14 String getName(); 19 String getName();
15 20
21 /**
22 * Retrieves the statistics as collection.
23 *
24 * @return the statistics.
25 */
16 Collection<ArtifactStatisticValue> getStatisticValues(); 26 Collection<ArtifactStatisticValue> getStatisticValues();
17 27
28 /**
29 * Add a new statistic to this container.
30 *
31 * @param value A statistic.
32 */
18 void addStatisticValues(ArtifactStatisticValue value); 33 void addStatisticValues(ArtifactStatisticValue value);
19
20 } 34 }
35 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :

http://dive4elements.wald.intevation.org