From: David ‘Bombe’ Roden Date: Sun, 22 Jun 2008 14:05:08 +0000 (+0200) Subject: add javadoc X-Git-Tag: 0.4.12.2~10 X-Git-Url: https://git.pterodactylus.net/?p=jSite.git;a=commitdiff_plain;h=0e4db8be621729d48c6c4bf66c3ae6ab20df9de7 add javadoc --- diff --git a/src/de/todesbaum/jsite/gui/NodeManagerListener.java b/src/de/todesbaum/jsite/gui/NodeManagerListener.java index a106dfc..924c7f6 100644 --- a/src/de/todesbaum/jsite/gui/NodeManagerListener.java +++ b/src/de/todesbaum/jsite/gui/NodeManagerListener.java @@ -23,12 +23,20 @@ import java.util.EventListener; import de.todesbaum.jsite.application.Node; - /** + * 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); - + }