Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/statistics/StatisticSet.java @ 1033:35c442410738
Added a comment after implementing cache cleaner
gnv-artifacts/trunk@1073 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Hans Plum <hans.plum@intevation.de> |
---|---|
date | Fri, 07 May 2010 06:50:47 +0000 |
parents | 05bf8534a35a |
children | f953c9a559d8 |
line wrap: on
line source
package de.intevation.gnv.statistics; import java.util.ArrayList; import java.util.Collection; /** * A container to store several statistics. * * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> */ public class StatisticSet { private String name = null; private Collection<Statistic> statistics = new ArrayList<Statistic>(); /** * Constructor * @param name Name of this container. */ public StatisticSet(String name) { this.name = name; } /** * Add a further statistic to this container. * * @param statistic A statistic. */ public void addStatistic(Statistic statistic){ this.statistics.add(statistic); } /** * Returns all statistics in this container. * @return all statistics. */ public Collection<Statistic> getStatistics(){ return this.statistics; } /** * Returns the name of this container. * @return the name. */ public String getName(){ return this.name; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :