You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-cvs@xml.apache.org by mr...@apache.org on 2007/08/27 05:57:14 UTC

svn commit: r569979 - in /xml/commons/trunk/java/external/src/javax/xml/parsers: DocumentBuilderFactory.java SAXParser.java SAXParserFactory.java

Author: mrglavas
Date: Sun Aug 26 20:57:11 2007
New Revision: 569979

URL: http://svn.apache.org/viewvc?rev=569979&view=rev
Log:
Fixing several typos.

Modified:
    xml/commons/trunk/java/external/src/javax/xml/parsers/DocumentBuilderFactory.java
    xml/commons/trunk/java/external/src/javax/xml/parsers/SAXParser.java
    xml/commons/trunk/java/external/src/javax/xml/parsers/SAXParserFactory.java

Modified: xml/commons/trunk/java/external/src/javax/xml/parsers/DocumentBuilderFactory.java
URL: http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/javax/xml/parsers/DocumentBuilderFactory.java?rev=569979&r1=569978&r2=569979&view=diff
==============================================================================
--- xml/commons/trunk/java/external/src/javax/xml/parsers/DocumentBuilderFactory.java (original)
+++ xml/commons/trunk/java/external/src/javax/xml/parsers/DocumentBuilderFactory.java Sun Aug 26 20:57:11 2007
@@ -341,7 +341,7 @@
 	 * <ul>
 	 *   <li>
 	 *     <code>true</code>: the implementation will limit XML processing to conform to implementation limits.
-	 *     Examples include enity expansion limits and XML Schema constructs that would consume large amounts of resources.
+	 *     Examples include entity expansion limits and XML Schema constructs that would consume large amounts of resources.
 	 *     If XML processing is limited for security reasons, it will be reported via a call to the registered
 	 *    {@link org.xml.sax.ErrorHandler#fatalError(SAXParseException exception)}.
 	 *     See {@link  DocumentBuilder#setErrorHandler(org.xml.sax.ErrorHandler errorHandler)}.
@@ -437,7 +437,7 @@
      * modified DOM trees.  
      * 
      * <p>
-     * Initialy, null is set as the {@link Schema}. 
+     * Initially, null is set as the {@link Schema}. 
      * 
      * <p>
      * This processing will take effect even if
@@ -451,7 +451,7 @@
      * exception when the {@link #newDocumentBuilder()} is invoked.</p>
      *
      *  
-     * <h4>Note for implmentors</h4>
+     * <h4>Note for implementors</h4>
      * <p>
      * A parser must be able to work with any {@link Schema}
      * implementation. However, parsers and schemas are allowed

Modified: xml/commons/trunk/java/external/src/javax/xml/parsers/SAXParser.java
URL: http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/javax/xml/parsers/SAXParser.java?rev=569979&r1=569978&r2=569979&view=diff
==============================================================================
--- xml/commons/trunk/java/external/src/javax/xml/parsers/SAXParser.java (original)
+++ xml/commons/trunk/java/external/src/javax/xml/parsers/SAXParser.java Sun Aug 26 20:57:11 2007
@@ -65,7 +65,7 @@
  *
  * Implementors of this class which wrap an underlaying implementation
  * can consider using the {@link org.xml.sax.helpers.ParserAdapter}
- * class to initially adapt their SAX1 impelemntation to work under
+ * class to initially adapt their SAX1 implementation to work under
  * this revised class.
  *
  * @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
@@ -76,7 +76,7 @@
     private static final boolean DEBUG = false;
         
     /**
-     * <p>Protected constructor to prevent instaniation.
+     * <p>Protected constructor to prevent instantiation.
      * Use {@link javax.xml.parsers.SAXParserFactory#newSAXParser()}.</p>
      */
     protected SAXParser () {
@@ -393,10 +393,10 @@
     }
     
     /**
-     * Returns the SAX parser that is encapsultated by the
+     * Returns the SAX parser that is encapsulated by the
      * implementation of this class.
      *
-     * @return The SAX parser that is encapsultated by the
+     * @return The SAX parser that is encapsulated by the
      *         implementation of this class.
      * 
      * @throws SAXException If any SAX errors occur during processing.

Modified: xml/commons/trunk/java/external/src/javax/xml/parsers/SAXParserFactory.java
URL: http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/javax/xml/parsers/SAXParserFactory.java?rev=569979&r1=569978&r2=569979&view=diff
==============================================================================
--- xml/commons/trunk/java/external/src/javax/xml/parsers/SAXParserFactory.java (original)
+++ xml/commons/trunk/java/external/src/javax/xml/parsers/SAXParserFactory.java Sun Aug 26 20:57:11 2007
@@ -217,7 +217,7 @@
 	 * <ul>
 	 *   <li>
 	 *     <code>true</code>: the implementation will limit XML processing to conform to implementation limits.
-	 *     Examples include enity expansion limits and XML Schema constructs that would consume large amounts of resources.
+	 *     Examples include entity expansion limits and XML Schema constructs that would consume large amounts of resources.
 	 *     If XML processing is limited for security reasons, it will be reported via a call to the registered
 	 *     {@link org.xml.sax.ErrorHandler#fatalError(SAXParseException exception)}.
 	 *     See {@link SAXParser} <code>parse</code> methods for handler specification.
@@ -313,7 +313,7 @@
      * is responsible to make sure that the application will receive
      * those modified event stream.</p>  
      * 
-     * <p>Initialy, <code>null</code> is set as the {@link Schema}.</p> 
+     * <p>Initially, <code>null</code> is set as the {@link Schema}.</p> 
      * 
      * <p>This processing will take effect even if
      * the {@link #isValidating()} method returns <code>false</code>.
@@ -325,7 +325,7 @@
      * Such configuration will cause a {@link SAXException}
      * exception when those properties are set on a {@link SAXParser}.</p>
      * 
-     * <h4>Note for implmentors</h4>
+     * <h4>Note for implementors</h4>
      * <p>
      * A parser must be able to work with any {@link Schema}
      * implementation. However, parsers and schemas are allowed