add javadoc
authorDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Sun, 22 Jun 2008 14:05:08 +0000 (16:05 +0200)
committerDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Sun, 22 Jun 2008 23:29:36 +0000 (01:29 +0200)
src/de/todesbaum/jsite/gui/NodeManagerListener.java

index a106dfc..924c7f6 100644 (file)
@@ -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 &lt;bombe@freenetproject.org&gt;
  */
 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);
-       
+
 }