X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fde%2Ftodesbaum%2Fjsite%2Fgui%2FNodeManagerListener.java;h=924c7f674ae8dac59ba18d16177dfbeb6849673b;hb=0e4db8be621729d48c6c4bf66c3ae6ab20df9de7;hp=3a14a50b6f55d2f8e1157f0e7b691bac9b90e111;hpb=e4f461213da0e30faf9e9eb2e97626abff320618;p=jSite.git diff --git a/src/de/todesbaum/jsite/gui/NodeManagerListener.java b/src/de/todesbaum/jsite/gui/NodeManagerListener.java index 3a14a50..924c7f6 100644 --- a/src/de/todesbaum/jsite/gui/NodeManagerListener.java +++ b/src/de/todesbaum/jsite/gui/NodeManagerListener.java @@ -23,13 +23,20 @@ import java.util.EventListener; import de.todesbaum.jsite.application.Node; - /** - * @author David Roden <droden@gmail.com> - * @version $Id$ + * Listener interface for objects that want to be notified if the node + * configuration changes. + * + * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ public interface NodeManagerListener extends EventListener { + /** + * Notifies a listener that the node configuration was changed. + * + * @param nodes + * The new list of nodes + */ public void nodesUpdated(Node[] nodes); - + }