Fix calculation of project size.
[jSite.git] / src / de / todesbaum / jsite / gui / FileScannerListener.java
index b8e373b..63e2c3d 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * jSite - a tool for uploading websites into Freenet
- * Copyright (C) 2006 David Roden
+ * jSite - FileScannerListener.java - Copyright © 2006–2012 David Roden
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -21,8 +20,21 @@ package de.todesbaum.jsite.gui;
 
 import java.util.EventListener;
 
+/**
+ * Listener interface for objects that want to be notified when scanning a
+ * project’s local path has finished.
+ *
+ * @see FileScanner
+ * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
+ */
 public interface FileScannerListener extends EventListener {
 
+       /**
+        * Notifies a listener that scanning a project’s local path has finished.
+        *
+        * @param fileScanner
+        *            The file scanner that finished
+        */
        public void fileScannerFinished(FileScanner fileScanner);
 
 }
\ No newline at end of file