Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/statistics/Statistics.java @ 127:f6f0e4ce4a35
merged gnv-artifacts/0.1
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:41 +0200 |
parents | 156db25ad4b4 |
children | 7fb9441dd8af |
comparison
equal
deleted
inserted
replaced
49:94a07d1d9316 | 127:f6f0e4ce4a35 |
---|---|
1 /** | |
2 * Title: Statistics, $Header: /share/gdi/SDI-Suite/Repository/projekte/BSH-GDI/genericViewer/src/main/java/de/conterra/bsh/gdi/gnviewer/output/statistics/Statistics.java,v 1.2 2008/01/30 12:38:34 blume Exp $ | |
3 * Source: $Source: /share/gdi/SDI-Suite/Repository/projekte/BSH-GDI/genericViewer/src/main/java/de/conterra/bsh/gdi/gnviewer/output/statistics/Statistics.java,v $ | |
4 * created by: Stefan Blume (blume) | |
5 * erstellt am: 14.12.2007 | |
6 * Copyright: con terra GmbH, 2005 | |
7 * | |
8 * modified by: $Author: blume $ | |
9 * modified on: $Date: 2008/01/30 12:38:34 $ | |
10 * Version: $Revision: 1.2 $ | |
11 * TAG: $Name: $ | |
12 * locked from: $Locker: $ | |
13 * CVS State: $State: Exp $ | |
14 * Project: $ProjectName$ | |
15 */ | |
16 package de.intevation.gnv.statistics; | |
17 | |
18 import java.util.Collection; | |
19 | |
20 import de.intevation.gnv.geobackend.base.Result; | |
21 import de.intevation.gnv.statistics.exception.StatisticsException; | |
22 | |
23 /** | |
24 * The interface <code>Statistics</code> fulfills the following purposes: | |
25 * <ol> | |
26 * <li>Providng a marker interface for statistics.</li> | |
27 * </ol> | |
28 * | |
29 * @author blume | |
30 * @version 1.0 | |
31 * @serial 1.0 | |
32 * @see | |
33 * @since 14.12.2007 09:34:32 | |
34 */ | |
35 public interface Statistics { | |
36 | |
37 /** | |
38 * @param resultSet | |
39 * @return | |
40 * @throws StatisticsException | |
41 */ | |
42 public Collection<Statistic> calculateStatistics(Collection<Result> resultSet) throws StatisticsException; | |
43 | |
44 } |