X-Git-Url: https://git.pterodactylus.net/?p=jkeytool.git;a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Futil%2Fi18n%2FI18nable.java;fp=src%2Fnet%2Fpterodactylus%2Futil%2Fi18n%2FI18nable.java;h=59c5877d1cce51246d16e67e4e3fa39fd306ec22;hp=c32fda62541650e8275dc18895db68a00e4bcb3e;hb=35bfd61e813bd2545c290ef6decdb987cbc9979d;hpb=e9054ed5d01d2726743059bfef19b349edd5720e diff --git a/src/net/pterodactylus/util/i18n/I18nable.java b/src/net/pterodactylus/util/i18n/I18nable.java index c32fda6..59c5877 100644 --- a/src/net/pterodactylus/util/i18n/I18nable.java +++ b/src/net/pterodactylus/util/i18n/I18nable.java @@ -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); }