]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/output/template/IterableDataset.java
upd: rename package name and all references to it
[gigi.git] / src / org / cacert / gigi / output / template / IterableDataset.java
diff --git a/src/org/cacert/gigi/output/template/IterableDataset.java b/src/org/cacert/gigi/output/template/IterableDataset.java
deleted file mode 100644 (file)
index 26405a5..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-package org.cacert.gigi.output.template;
-
-import java.util.Map;
-
-import org.cacert.gigi.localisation.Language;
-
-/**
- * Represents some kind of data, that may be iterated over in a template using
- * the <code>foreach</code> statement.
- */
-public interface IterableDataset {
-
-    /**
-     * Moves to the next Dataset.
-     * 
-     * @param l
-     *            the language for l10n-ed strings.
-     * @param vars
-     *            the variables used in this template. They need to be updated
-     *            for each line.
-     * @return true, iff there was a data-line "installed". False of this set is
-     *         already empty.
-     */
-    public boolean next(Language l, Map<String, Object> vars);
-}