X-Git-Url: https://code.wpia.club/?p=gigi.git;a=blobdiff_plain;f=src%2Forg%2Fcacert%2Fgigi%2Foutput%2Ftemplate%2FIterableDataset.java;fp=src%2Forg%2Fcacert%2Fgigi%2Foutput%2Ftemplate%2FIterableDataset.java;h=0000000000000000000000000000000000000000;hp=26405a54cb4c998cca1b331bb0d9fe9147b15fa9;hb=bccd4cc0dba0f89aa045b113bac46eb8cc1dab4e;hpb=c9ed09f0007fc2c813815be927a5a24b23dab83c diff --git a/src/org/cacert/gigi/output/template/IterableDataset.java b/src/org/cacert/gigi/output/template/IterableDataset.java deleted file mode 100644 index 26405a54..00000000 --- a/src/org/cacert/gigi/output/template/IterableDataset.java +++ /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 foreach 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 vars); -}