Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / general / src / main / java / org / wamblee / io / DirectoryMonitor.java
index b777a97c642a67fdb7cd02ad116cfea4429008d8..301349803044a9dc09335f235b51da53a70f8946 100644 (file)
@@ -27,73 +27,54 @@ import java.util.HashSet;
 import java.util.Map;
 import java.util.Set;
 
-
 /**
  * Monitors a directory for changes.
- *
+ * 
  * @author Erik Brakkee
  */
 public class DirectoryMonitor {
-    /**
-     * DOCUMENT ME!
-     */
     private static final Log LOG = LogFactory.getLog(DirectoryMonitor.class);
 
-    /**
-     * DOCUMENT ME!
-     */
     private File directory;
 
-    /**
-     * DOCUMENT ME!
-     */
     private FileFilter filter;
 
-    /**
-     * DOCUMENT ME!
-     */
     private Listener listener;
 
-    /**
-     * DOCUMENT ME!
-     */
     private Map<File, Date> contents;
 
-/**
+    /**
      * Creates a new DirectoryMonitor object.
-     *
-     * @param aDirectory DOCUMENT ME!
-     * @param aFilefilter DOCUMENT ME!
-     * @param aListener DOCUMENT ME!
+     * 
      */
     public DirectoryMonitor(File aDirectory, FileFilter aFilefilter,
         Listener aListener) {
         directory = aDirectory;
 
         if (!directory.isDirectory()) {
-            throw new IllegalArgumentException("Directory '" + directory
-                "' does not exist");
+            throw new IllegalArgumentException("Directory '" + directory +
+                "' does not exist");
         }
 
-        filter       = aFilefilter;
-        listener     = aListener;
-        contents     = new HashMap<File, Date>();
+        filter = aFilefilter;
+        listener = aListener;
+        contents = new HashMap<File, Date>();
     }
 
     /**
-     * Polls the directory for changes and notifies the listener of any
-     * changes. In case of any exceptions thrown by the listener while
-     * handling the changes, the next call to this method will invoked the
-     * listeners again for the same changes.
+     * Polls the directory for changes and notifies the listener of any changes.
+     * In case of any exceptions thrown by the listener while handling the
+     * changes, the next call to this method will invoked the listeners again
+     * for the same changes.
      */
     public void poll() {
         LOG.debug("Polling " + directory);
 
-        Map<File, Date> newContents  = new HashMap<File, Date>();
-        File[]          files        = directory.listFiles(filter);
+        Map<File, Date> newContents = new HashMap<File, Date>();
+        File[] files = directory.listFiles(filter);
 
-        // Check deleted files. 
-        Set<File>       deletedFiles = new HashSet<File>(contents.keySet());
+        // Check deleted files.
+        Set<File> deletedFiles = new HashSet<File>(contents.keySet());
 
         for (File file : files) {
             if (file.isFile()) {