]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/output/template/Outputable.java
upd: rename package name and all references to it
[gigi.git] / src / org / cacert / gigi / output / template / Outputable.java
diff --git a/src/org/cacert/gigi/output/template/Outputable.java b/src/org/cacert/gigi/output/template/Outputable.java
deleted file mode 100644 (file)
index 1e6d9f1..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-package org.cacert.gigi.output.template;
-
-import java.io.PrintWriter;
-import java.util.Map;
-
-import org.cacert.gigi.localisation.Language;
-
-/**
- * An object that is outputable to the user normally in an HTML-page.
- */
-public interface Outputable {
-
-    public static final String OUT_KEY_PLAIN = "output-content-plain";
-
-    /**
-     * Writes this object's content to the given output stream.
-     * 
-     * @param out
-     *            the PrintWriter to the user.
-     * @param l
-     *            the {@link Language} to translate localizable strings to.
-     * @param vars
-     *            a map of variable assignments for this template.
-     */
-    public void output(PrintWriter out, Language l, Map<String, Object> vars);
-}