]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/output/template/IterableDataset.java
Format code according do BenBE's formatter.
[gigi.git] / src / org / cacert / gigi / output / template / IterableDataset.java
index bd7b99b25b3d5cf9a975b7e92e924dfac18e11eb..3357be0916f67ef947333481d1cfec3b7971e0dc 100644 (file)
@@ -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<String, Object> 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<String, Object> vars);
 }