Index: /FCKeditor.Java/branches/2.4/src/site/apt/fckeditor-properties.apt
===================================================================
--- /FCKeditor.Java/branches/2.4/src/site/apt/fckeditor-properties.apt	(revision 1800)
+++ /FCKeditor.Java/branches/2.4/src/site/apt/fckeditor-properties.apt	(revision 1801)
@@ -7,15 +7,36 @@
 * Configuration properties
 
-   This table lists all the configurable properties for the integration pack.
-   The default properties are defined in the
-   <<<default.properties>>> file included in the library jar.
+   All properties are optional. In the meaning of 'Convention over Configuration' 
+   only the properties, of which the default isn't requested, have to be set.
 
-   For the whole web application, create a custom properties file
-   named <<<fckeditor.properties>>> and place it in the application
-   classpath (typically into <<<WEB-INF/classes>>> folder).
+   There are two ways to overwrite the default properties: 
    
-   Include in your custom properties file only the properties you need
-   to change. If a property is not defined in the user file, the
-   default from the <<<default.properties>>> included in the jar is used.
+   [[1]] A common Java properties file, e.g.:
+   
+   Create a properties file named <<<fckeditor.properties>>> and place it in the 
+   root of the application classpath (typically into <<<WEB-INF/classes>>> folder).
+
++-------------------------------------------------------+
+  fckeditor.toolbarSet = Silver
+  connector.sessionDataImpl=net.fckeditor.impl.BasicSessionData
+...
++-------------------------------------------------------+
+
+   [[2]] In Java, calling the PropertiesHolder:
+   
++-------------------------------------------------------+
+...
+  import net.fckeditor.handlers.PropertiesLoader;
+...
+  PropertiesLoader.setProperty("fckeditor.toolbarSet", "Silver");
+  PropertiesLoader.setProperty("connector.sessionDataImpl", "net.fckeditor.impl.BasicSessionData");
+...
++-------------------------------------------------------+   
+   
+   []
+   
+   As you see, in both ways the name of the properties are equal.
+   The tables below lists all the configurable properties for the integration pack.
+   
 
 * FCKeditor
