Index: /CKEditor.Java/ckeditor-java-core/trunk/src/main/java/com/ckeditor/CKEditorConfig.java
===================================================================
--- /CKEditor.Java/ckeditor-java-core/trunk/src/main/java/com/ckeditor/CKEditorConfig.java	(revision 6794)
+++ /CKEditor.Java/ckeditor-java-core/trunk/src/main/java/com/ckeditor/CKEditorConfig.java	(revision 6795)
@@ -11,5 +11,5 @@
 
 /**
- * CKEditor tag for Java configuration class.
+ * CKEditor tag for the Java configuration class.
  */
 public class CKEditorConfig implements Cloneable {
@@ -25,10 +25,10 @@
 	
 	/**
-	 * Adds number param to config.
+	 * Adds a Number parameter to the configuration.
 	 * <b>Usage:</b>
 	 * <pre>config.addConfigValue("width", 100);</pre>
 	 * <pre>config.addConfigValue("dialog_backgroundCoverOpacity", 0.7);</pre>
-	 * @param key config param key
-	 * @param value config param value.
+	 * @param key configuration parameter key
+	 * @param value configuration parameter value.
 	 */
 	public void addConfigValue(final String key, final Number value) {
@@ -37,10 +37,10 @@
 	
 	/**
-	 * Adds String param to config.
+	 * Adds a String parameter to the configuration.
 	 * <b>Usage:</b>
 	 * <pre>config.addConfigValue("baseHref", "http://www.example.com/path/");</pre>
 	 * <pre>config.addConfigValue("toolbar", [[ 'Source', '-', 'Bold', 'Italic' ]]);</pre>
-	 * @param key config param key
-	 * @param value config param value.
+	 * @param key configuration parameter key
+	 * @param value configuration parameter value.
 	 */
 	public void addConfigValue(final String key, final String value) {
@@ -49,5 +49,5 @@
 	
 	/**
-	 * Adds Map param to config.
+	 * Adds a Map parameter to the configuration.
 	 * <b>Usage:</b>
 	 * <pre>Map<String, Object> map = new HashMap<String, Object>();</pre>
@@ -55,6 +55,6 @@
 	 * <pre>map.put("styles", "{'background-color' : '#(color)'}");</pre>
 	 * <pre>config.addConfigValue("colorButton_backStyle", map);</pre>
-	 * @param key config param key
-	 * @param value config param value.
+	 * @param key configuration parameter key
+	 * @param value configuration parameter value.
 	 */
 	public void addConfigValue(final String key, 
@@ -64,5 +64,5 @@
 	
 	/**
-	 * Adds List param to config.
+	 * Adds a List parameter to the configuration.
 	 * <b>Usage:</b>
 	 * <pre> 
@@ -76,6 +76,6 @@
 		config.addConfigValue("toolbar", list);
 		</pre>
-	 * @param key config param key
-	 * @param value config param value.
+	 * @param key configuration parameter key
+	 * @param value configuration parameter value.
 	 */
 	public void addConfigValue(final String key, final List<? extends Object> value) {
@@ -84,9 +84,9 @@
 	
 	/**
-	 * Adds boolean param to config.
+	 * Adds a Boolean parameter to the configuration.
 	 * <b>Usage:</b>
 	 * <pre>config.addConfigValue("autoUpdateElement", true);</pre> 
-	 * @param key config param key
-	 * @param value config param value.
+	 * @param key configuration parameter key
+	 * @param value configuration parameter value.
 	 */
 	public void addConfigValue(final String key, final Boolean value) {
@@ -96,7 +96,7 @@
 	
 	/**
-	 * Gets config value by key.
-	 * @param key config param key
-	 * @return config param value.
+	 * Gets a configuration value by key.
+	 * @param key configuration parameter key
+	 * @return configuration parameter value.
 	 */
 	Object getConfigValue(final String key) {
@@ -105,5 +105,5 @@
 
 	/**
-	 * @return all config values.
+	 * @return all configuration values.
 	 */
 	Map<String, Object> getConfigValues() {
@@ -112,8 +112,8 @@
 	
 	/**
-	 * Removes config value by key.
+	 * Removes a configuration value by key.
 	 * <b>Usage:</b>
 	 * <pre>config.removeConfigValue("toolbar");</pre>
-	 * @param key config param key.
+	 * @param key configuration parameter key.
 	 */
 	public void removeConfigValue(final String key) {
@@ -122,6 +122,6 @@
 	
 	/**
-	 * Configure settings. Merge config and event handlers.
-	 * @return setting config.
+	 * Configure settings. Merge configuration and event handlers.
+	 * @return setting configuration.
 	 * @param eventHandler events
 	 */
@@ -163,6 +163,6 @@
 	
 	/**
-	 * Checks if config is empty.
-	 * @return true if is
+	 * Checks if configuration is empty.
+	 * @return true if the configuration is empty.
 	 */
 	public boolean isEmpty() {
