Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/statistics/StatisticSet.java @ 1089:1dc08501a1be
Implemented necessary classes (artifact, output state) used for a new product 'Achsenparalleler Vertikalschnitt.
gnv-artifacts/trunk@1203 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Sat, 12 Jun 2010 12:59:48 +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 :