Author: oheger
Date: Wed Nov 30 21:33:33 2011
New Revision: 1208805

URL: http://svn.apache.org/viewvc?rev=1208805&view=rev
Log:
Java 1.5 compatibility: Javadocs.

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

Modified: 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ConfigurationXMLReader.java
URL: 
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ConfigurationXMLReader.java?rev=1208805&r1=1208804&r2=1208805&view=diff
==============================================================================
--- 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ConfigurationXMLReader.java
 (original)
+++ 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ConfigurationXMLReader.java
 Wed Nov 30 21:33:33 2011
@@ -30,14 +30,16 @@ import org.xml.sax.XMLReader;
 import org.xml.sax.helpers.AttributesImpl;
 
 /**
- * <p>A base class for &quot;faked&quot; <code>XMLReader</code> classes
+ * <p>A base class for &quot;faked&quot; {@code XMLReader} classes
  * that transform a configuration object in a set of SAX parsing events.</p>
  * <p>This class provides dummy implementations for most of the methods
- * defined in the <code>XMLReader</code> interface that are not used for this
+ * defined in the {@code XMLReader} interface that are not used for this
  * special purpose. There will be concrete sub classes that process specific
  * configuration classes.</p>
  *
- * @author <a href="mailto:[email protected]";>Oliver Heger</a>
+ * @author <a
+ * href="http://commons.apache.org/configuration/team-list.html";>Commons
+ * Configuration team</a>
  * @version $Id$
  */
 public abstract class ConfigurationXMLReader implements XMLReader
@@ -61,7 +63,7 @@ public abstract class ConfigurationXMLRe
     private String rootName;
 
     /**
-     * Creates a new instance of <code>ConfigurationXMLReader</code>.
+     * Creates a new instance of {@code ConfigurationXMLReader}.
      */
     protected ConfigurationXMLReader()
     {
@@ -83,7 +85,7 @@ public abstract class ConfigurationXMLRe
     }
 
     /**
-     * Parses the acutal configuration object. The passed input source will be
+     * Parses the actual configuration object. The passed input source will be
      * ignored.
      *
      * @param input the input source (ignored)
@@ -349,9 +351,9 @@ public abstract class ConfigurationXMLRe
 
     /**
      * Processes all keys stored in the actual configuration. This method is
-     * called by <code>parseConfiguration()</code> to start the main parsing
-     * process. <code>parseConfiguration()</code> calls the content handler's
-     * <code>startDocument()</code> and <code>endElement()</code> methods
+     * called by {@code parseConfiguration()} to start the main parsing
+     * process. {@code parseConfiguration()} calls the content handler's
+     * {@code startDocument()} and {@code endElement()} methods
      * and cares for exception handling. The remaining actions are left to this
      * method that must be implemented in a concrete sub class.
      *


Reply via email to