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=3357be0916f67ef947333481d1cfec3b7971e0dc;hp=bd7b99b25b3d5cf9a975b7e92e924dfac18e11eb;hb=943d8e7ed0ea5a9d56e7e694a3cbd849c52bad16;hpb=05e8bb67c3407cbecbb528db16b1608d8534907e diff --git a/src/org/cacert/gigi/output/template/IterableDataset.java b/src/org/cacert/gigi/output/template/IterableDataset.java index bd7b99b2..3357be09 100644 --- a/src/org/cacert/gigi/output/template/IterableDataset.java +++ b/src/org/cacert/gigi/output/template/IterableDataset.java @@ -8,16 +8,17 @@ import org.cacert.gigi.Language; * Represents some kind of data, that may be iterated over in a template. */ 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); + + /** + * 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); }