Index: /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/Dispatcher.java
===================================================================
--- /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/Dispatcher.java	(revision 2452)
+++ /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/Dispatcher.java	(revision 2453)
@@ -55,9 +55,8 @@
 
 /**
- * Encapsulates the verification of the parameters and {@link Connector}-calls. (So the complete 
- * XML-handling could be changed without afford to the {@link Connector}s.)<br>
- * If errors are happened inside the methods of the {@link Connector} well defined exceptions 
- * from {@link net.fckeditor.connector.exception} will be thrown. These exceptions will be catched
- * and converted into corresponding response objects.
+ * This class is calling by {@link ConnectorServlet}. It verifies the request parameters 
+ * and forward it to the corresponding {@link Connector} methods. If errors are happened inside these methods,
+ * well defined exceptions from {@link net.fckeditor.connector.exception} will be thrown. These exceptions or the return
+ * values of {@link Connector} methods will be transfered to the HttpServletResponse object.
  * 
  * @version $Id$
Index: /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/exception/FolderAlreadyExistsException.java
===================================================================
--- /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/exception/FolderAlreadyExistsException.java	(revision 2452)
+++ /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/exception/FolderAlreadyExistsException.java	(revision 2453)
@@ -21,10 +21,14 @@
 package net.fckeditor.connector.exception;
 
+import net.fckeditor.connector.Connector;
+import net.fckeditor.connector.Dispatcher;
+
 /**
- * TODO FolderAlreadyExistsException.java - document me 
+ * Signals that a {@link Connector} method tried to create a folder that already exists. <br>
+ * <br> 
+ * These is an exception to signal the {@link Dispatcher} what was going wrong.
  *
  * @version $Id$
  */
 public class FolderAlreadyExistsException extends Exception {
-
 }
Index: /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/exception/InvalidCurrentFolderException.java
===================================================================
--- /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/exception/InvalidCurrentFolderException.java	(revision 2452)
+++ /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/exception/InvalidCurrentFolderException.java	(revision 2453)
@@ -21,10 +21,15 @@
 package net.fckeditor.connector.exception;
 
+import net.fckeditor.connector.Connector;
+import net.fckeditor.connector.Dispatcher;
+
 /**
- * TODO InvalidCurrentFolderException.java - document me 
+ * Signals that a {@link Connector} method can't find the current folder. That's 
+ * never happened in common cases.<br>
+ * <br> 
+ * These is an exception to signal the {@link Dispatcher} what was going wrong.
  *
  * @version $Id$
  */
 public class InvalidCurrentFolderException extends Exception {
-
 }
Index: /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/exception/InvalidFolderNameException.java
===================================================================
--- /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/exception/InvalidFolderNameException.java	(revision 2452)
+++ /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/exception/InvalidFolderNameException.java	(revision 2453)
@@ -21,10 +21,14 @@
 package net.fckeditor.connector.exception;
 
+import net.fckeditor.connector.Connector;
+import net.fckeditor.connector.Dispatcher;
+
 /**
- * TODO InvalidFolderName.java - document me 
+ * Signals that a {@link Connector} method tried to create a folder and it fails. <br>
+ * <br> 
+ * These is an exception to signal the {@link Dispatcher} what was going wrong.
  *
  * @version $Id$
  */
 public class InvalidFolderNameException extends Exception {
-
 }
Index: /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/exception/SecurityIssueException.java
===================================================================
--- /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/exception/SecurityIssueException.java	(revision 2452)
+++ /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/exception/SecurityIssueException.java	(revision 2453)
@@ -21,10 +21,14 @@
 package net.fckeditor.connector.exception;
 
+import net.fckeditor.connector.Connector;
+import net.fckeditor.connector.Dispatcher;
+
 /**
- * TODO SecurityException.java - document me 
+ * Thrown to indicate a security violation in a {@link Connector}.<br>
+ * <br> 
+ * These is an exception to signal the {@link Dispatcher} what was going wrong. 
  *
  * @version $Id$
  */
 public class SecurityIssueException extends Exception {
-
 }
Index: /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/exception/UnknownException.java
===================================================================
--- /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/exception/UnknownException.java	(revision 2452)
+++ /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/exception/UnknownException.java	(revision 2453)
@@ -21,10 +21,13 @@
 package net.fckeditor.connector.exception;
 
+import net.fckeditor.connector.Dispatcher;
+
 /**
- * TODO UnknownException.java - document me 
+ * Signals an undefined exception.<br>
+ * <br> 
+ * These is an exception to signal the {@link Dispatcher} what was going wrong.
  *
  * @version $Id$
  */
 public class UnknownException extends Exception {
-
 }
