Make I18n class non-static.
[jkeytool.git] / src / net / pterodactylus / util / i18n / I18nable.java
index c32fda6..59c5877 100644 (file)
@@ -21,14 +21,17 @@ package net.pterodactylus.util.i18n;
 
 /**
  * Interface for objects that want to be notified when the language is changed.
- * 
+ *
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
  */
 public interface I18nable {
 
        /**
         * Notifies the object that the language in {@link I18n} was changed.
+        *
+        * @param i18n
+        *            The i18n container that is updated
         */
-       public void updateI18n();
+       public void updateI18n(I18n i18n);
 
 }