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 2444)
+++ /FCKeditor.Java/branches/2.5-test/java-core/src/main/java/net/fckeditor/connector/Connector.java	(revision 2445)
@@ -83,8 +83,32 @@
 		throws InvalidCurrentFolderException, SecurityIssueException, UnknownException;
 		
+	/**
+	 * Creates a new folder inside inside the abstract path
+	 * <code>/[type-folder]/[currentFolder]</code>.
+	 * 
+	 * @param type
+	 * @param currentFolder
+	 * @param newFolder Name of the new folder to create.
+	 * @throws InvalidCurrentFolderException
+	 * @throws SecurityIssueException
+	 * @throws InvalidFolderNameException
+	 * @throws FolderAlreadyExistsException
+	 * @throws UnknownException
+	 */
 	public void createFolder(final ResourceType type, final String currentFolder, final String newFolder) 
 		throws InvalidCurrentFolderException, SecurityIssueException, InvalidFolderNameException, FolderAlreadyExistsException, UnknownException;
 
-	
+	/**
+	 * Uploads a new file into the abstract path <code>/[type-folder]/[currentFolder]</code>. If there is 
+	 * already a file with the same name, the new one has to renamed.
+	 * 
+	 * @param type
+	 * @param currentFolder
+	 * @param fileName
+	 * @param inputStream Content of the file.
+	 * @return <code>fileName</code> or the name of the renamed file.
+	 * @throws InvalidCurrentFolderException
+	 * @throws SecurityIssueException
+	 */
 	public String fileUpload(final ResourceType type, final String currentFolder, final String fileName, final InputStream inputStream)
 		throws InvalidCurrentFolderException, SecurityIssueException;
