Index: /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/Connector.java
===================================================================
--- /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/Connector.java	(revision 2419)
+++ /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/Connector.java	(revision 2420)
@@ -37,13 +37,23 @@
  * <br>
  * <br>
- * TODO find a nice way to have #getFiles and #getFolder instead of #getFileAndFolders
+ * TODO find a nice way to have #getFiles and #getFolder instead of #getFileAndFolders.
  * 
  * @version $Id$
  */
 public interface Connector {
+	
+	/**
+	 * Initializes the connector. This method will be called on the start of the webapp.
+	 * 
+	 * @param servletContext to get the real path for example.
+	 */
 	public void init(final ServletContext servletContext);
+	
 	public GetResponse getFolders(final ResourceType type, final String currentFolder);
+	
 	public GetResponse getFilesAndFolders(final ResourceType type, final String currentFolder);
+	
 	public GetResponse createFolder(final ResourceType type, final String currentFolder, final String newFolder);
+	
 	public UploadResponse fileUpload(final ResourceType type, final String currentFolder, final String fileName, final InputStream inputStream);
 }
Index: /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/ConnectorServlet.java
===================================================================
--- /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/ConnectorServlet.java	(revision 2419)
+++ /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/ConnectorServlet.java	(revision 2420)
@@ -58,5 +58,7 @@
 	private Dispatcher dispatcher;
 	
-	/* (non-Javadoc)
+	/**
+	 * Initializes the {@link Dispatcher}.
+	 * 
 	 * @see javax.servlet.GenericServlet#init()
 	 */
