]> WPIA git - gigi.git/blob - src/club/wpia/gigi/output/template/Translatable.java
fix: ResultSet.getDate is often wrong as it fetches day-precision times
[gigi.git] / src / club / wpia / gigi / output / template / Translatable.java
1 package club.wpia.gigi.output.template;
2
3 import java.util.Collection;
4
5 /**
6  * An {@link Outputable} that wants to give static strings to translation
7  * collection.
8  */
9 public interface Translatable extends Outputable {
10
11     /**
12      * Adds all static translation Strings to the given {@link Collection}.
13      * 
14      * @param s
15      *            the {@link Collection} to add the Strings to.
16      */
17     public void addTranslations(Collection<String> s);
18 }