add javadoc
[jSite.git] / src / de / todesbaum / jsite / gui / NodeManagerListener.java
index 3a14a50..924c7f6 100644 (file)
@@ -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);
-       
+
 }