Author: oheger
Date: Thu Dec 27 20:51:24 2012
New Revision: 1426314

URL: http://svn.apache.org/viewvc?rev=1426314&view=rev
Log:
Formatting.

Modified:
    
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/builder/XMLBuilderProperties.java

Modified: 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/builder/XMLBuilderProperties.java
URL: 
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/builder/XMLBuilderProperties.java?rev=1426314&r1=1426313&r2=1426314&view=diff
==============================================================================
--- 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/builder/XMLBuilderProperties.java
 (original)
+++ 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/builder/XMLBuilderProperties.java
 Thu Dec 27 20:51:24 2012
@@ -21,9 +21,13 @@ import javax.xml.parsers.DocumentBuilder
 import org.xml.sax.EntityResolver;
 
 /**
- * <p>Definition of a parameters interface for XML configurations.</p>
- * <p>The {@code XMLConfiguration} class defines a bunch of additional 
properties
- * related to XML processing.</p>
+ * <p>
+ * Definition of a parameters interface for XML configurations.
+ * </p>
+ * <p>
+ * The {@code XMLConfiguration} class defines a bunch of additional properties
+ * related to XML processing.
+ * </p>
  *
  * @version $Id$
  * @since 2.0
@@ -34,6 +38,7 @@ public interface XMLBuilderProperties<T>
     /**
      * Allows setting the {@code DocumentBuilder} for parsing an XML document.
      * This is the most flexible way of customizing XML processing.
+     *
      * @param docBuilder the {@code DocumentBuilder} to use
      * @return a reference to this object for method chaining
      */
@@ -42,6 +47,7 @@ public interface XMLBuilderProperties<T>
     /**
      * Allows setting the {@code EntityResolver} which maps entity references
      * during XML parsing.
+     *
      * @param resolver the {@code EntityResolver} to use
      * @return a reference to this object for method chaining
      */
@@ -49,6 +55,7 @@ public interface XMLBuilderProperties<T>
 
     /**
      * Sets the public ID of the DOCTYPE declaration.
+     *
      * @param pubID the public ID
      * @return a reference to this object for method chaining
      */
@@ -56,6 +63,7 @@ public interface XMLBuilderProperties<T>
 
     /**
      * Sets the system ID of the DOCTYPE declaration.
+     *
      * @param sysID the system ID
      * @return a reference to this object for method chaining
      */
@@ -63,6 +71,7 @@ public interface XMLBuilderProperties<T>
 
     /**
      * Sets a flag whether schema/DTD validation should be performed.
+     *
      * @param f the validation flag
      * @return a reference to this object for method chaining
      */
@@ -71,7 +80,9 @@ public interface XMLBuilderProperties<T>
     /**
      * Sets the value of the schemaValidation flag. This flag determines 
whether
      * DTD or Schema validation should be used.
-     * @param f the flag value, <b>true</b> for schema validation, 
<b>false</b> for DTD validation
+     *
+     * @param f the flag value, <b>true</b> for schema validation, <b>false</b>
+     *        for DTD validation
      * @return a reference to this object for method chaining
      */
     T setSchemaValidation(boolean f);


Reply via email to