]> WPIA git - gigi.git/blobdiff - src/club/wpia/gigi/output/template/Translatable.java
upd: rename package name and all references to it
[gigi.git] / src / club / wpia / gigi / output / template / Translatable.java
diff --git a/src/club/wpia/gigi/output/template/Translatable.java b/src/club/wpia/gigi/output/template/Translatable.java
new file mode 100644 (file)
index 0000000..c074faf
--- /dev/null
@@ -0,0 +1,18 @@
+package club.wpia.gigi.output.template;
+
+import java.util.Collection;
+
+/**
+ * An {@link Outputable} that wants to give static strings to translation
+ * collection.
+ */
+public interface Translatable extends Outputable {
+
+    /**
+     * Adds all static translation Strings to the given {@link Collection}.
+     * 
+     * @param s
+     *            the {@link Collection} to add the Strings to.
+     */
+    public void addTranslations(Collection<String> s);
+}