(no commit message)
[utils] / support / general / src / main / java / org / wamblee / io / DirectoryMonitor.java
index a4ad6d87f4a0bbf8f57c9f2a87318db57797558e..13181975068e0233f122411942d49e1ab319fab8 100644 (file)
@@ -29,6 +29,8 @@ import java.util.Set;
 
 /**
  * Monitors a directory for changes.
+ * The currernt implementation only checks files not directories and does not check for 
+ * modifications in subdirectories. 
  * 
  * @author Erik Brakkee
  */
@@ -110,11 +112,26 @@ public class DirectoryMonitor {
         contents = newContents;
     }
 
+    /**
+     * Listener interface to be provided by users of the directory monitor to get notified of
+     * changes. 
+     * 
+     * @author Erik Brakkee
+     */
     public static interface Listener {
+        /**
+         * @param aFile File that has changed. 
+         */
         void fileChanged(File aFile);
 
+        /**
+         * @param aFile File that was created. 
+         */
         void fileCreated(File aFile);
 
+        /**
+         * @param aFile File that was deleted.
+         */
         void fileDeleted(File aFile);
     }
 }