(no commit message)
[utils] / support / general / src / main / java / org / wamblee / io / DirectoryMonitor.java
index a258f0984ae346cdfd9ab347380f5c7e970dbb32..685a0cb5ca5f5673902ac6c7b89f284d5ea4f844 100644 (file)
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.io;
 
-
 import java.io.File;
 import java.io.FileFilter;
 
@@ -27,14 +26,14 @@ import java.util.Set;
 import java.util.logging.Logger;
 
 /**
- * Monitors a directory for changes.
- * The currernt implementation only checks files not directories and does not check for 
- * modifications in subdirectories. 
+ * Monitors a directory for changes. The currernt implementation only checks
+ * files not directories and does not check for modifications in subdirectories.
  * 
  * @author Erik Brakkee
  */
 public class DirectoryMonitor {
-    private static final Logger LOG = Logger.getLogger(DirectoryMonitor.class.getName());
+    private static final Logger LOG = Logger.getLogger(DirectoryMonitor.class
+        .getName());
 
     private File directory;
 
@@ -112,24 +111,27 @@ public class DirectoryMonitor {
     }
 
     /**
-     * Listener interface to be provided by users of the directory monitor to get notified of
-     * changes. 
+     * 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. 
+         * @param aFile
+         *            File that has changed.
          */
         void fileChanged(File aFile);
 
         /**
-         * @param aFile File that was created. 
+         * @param aFile
+         *            File that was created.
          */
         void fileCreated(File aFile);
 
         /**
-         * @param aFile File that was deleted.
+         * @param aFile
+         *            File that was deleted.
          */
         void fileDeleted(File aFile);
     }