]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/output/template/Translatable.java
add: documentation to output classes
[gigi.git] / src / org / cacert / gigi / output / template / Translatable.java
index b15ffb9354ca52aa421221b40eea84089dbea6d2..4df11474abbbe917d07172d76bffb87771e8b15d 100644 (file)
@@ -2,7 +2,17 @@ package org.cacert.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);
 }