Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/statistics/StatisticSet.java @ 815:22c18083225e
Removed compiler warnings while JavaDoc generation.
gnv-artifacts/trunk@900 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 12 Apr 2010 06:59:33 +0000 |
parents | 9d427dd2a96a |
children | 05bf8534a35a |
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 :