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 06:28:58 UTC

svn commit: r569994 - in /xml/commons/trunk/java/external/src/javax/xml/transform: ErrorListener.java OutputKeys.java TransformerConfigurationException.java TransformerException.java TransformerFactory.java TransformerFactoryConfigurationError.java

Author: mrglavas
Date: Sun Aug 26 21:28:57 2007
New Revision: 569994

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

Modified:
    xml/commons/trunk/java/external/src/javax/xml/transform/ErrorListener.java
    xml/commons/trunk/java/external/src/javax/xml/transform/OutputKeys.java
    xml/commons/trunk/java/external/src/javax/xml/transform/TransformerConfigurationException.java
    xml/commons/trunk/java/external/src/javax/xml/transform/TransformerException.java
    xml/commons/trunk/java/external/src/javax/xml/transform/TransformerFactory.java
    xml/commons/trunk/java/external/src/javax/xml/transform/TransformerFactoryConfigurationError.java

Modified: xml/commons/trunk/java/external/src/javax/xml/transform/ErrorListener.java
URL: http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/javax/xml/transform/ErrorListener.java?rev=569994&r1=569993&r2=569994&view=diff
==============================================================================
--- xml/commons/trunk/java/external/src/javax/xml/transform/ErrorListener.java (original)
+++ xml/commons/trunk/java/external/src/javax/xml/transform/ErrorListener.java Sun Aug 26 21:28:57 2007
@@ -22,7 +22,7 @@
 /**
  * <p>To provide customized error handling, implement this interface and
  * use the <code>setErrorListener</code> method to register an instance of the
- * implmentation with the {@link javax.xml.transform.Transformer}.  The
+ * implementation with the {@link javax.xml.transform.Transformer}.  The
  * <code>Transformer</code> then reports all errors and warnings through this
  * interface.</p>
  *

Modified: xml/commons/trunk/java/external/src/javax/xml/transform/OutputKeys.java
URL: http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/javax/xml/transform/OutputKeys.java?rev=569994&r1=569993&r2=569994&view=diff
==============================================================================
--- xml/commons/trunk/java/external/src/javax/xml/transform/OutputKeys.java (original)
+++ xml/commons/trunk/java/external/src/javax/xml/transform/OutputKeys.java Sun Aug 26 21:28:57 2007
@@ -186,8 +186,8 @@
      * <code>text</code>, a <code>charset</code> parameter should be added
      * according to the character encoding actually used by the output
      * method.  </p>
-     * @see <a href="http://www.w3.org/TR/xslt#output">s
-     * ection 16 of the XSL Transformations (XSLT) W3C Recommendation</a>
+     * @see <a href="http://www.w3.org/TR/xslt#output">
+     *  section 16 of the XSL Transformations (XSLT) W3C Recommendation</a>
      */
     public static final String MEDIA_TYPE = "media-type";
 }

Modified: xml/commons/trunk/java/external/src/javax/xml/transform/TransformerConfigurationException.java
URL: http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/javax/xml/transform/TransformerConfigurationException.java?rev=569994&r1=569993&r2=569994&view=diff
==============================================================================
--- xml/commons/trunk/java/external/src/javax/xml/transform/TransformerConfigurationException.java (original)
+++ xml/commons/trunk/java/external/src/javax/xml/transform/TransformerConfigurationException.java Sun Aug 26 21:28:57 2007
@@ -26,7 +26,7 @@
 
     /**
      * Create a new <code>TransformerConfigurationException</code> with no
-     * detail mesage.
+     * detail message.
      */
     public TransformerConfigurationException() {
         super("Configuration Error");

Modified: xml/commons/trunk/java/external/src/javax/xml/transform/TransformerException.java
URL: http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/javax/xml/transform/TransformerException.java?rev=569994&r1=569993&r2=569994&view=diff
==============================================================================
--- xml/commons/trunk/java/external/src/javax/xml/transform/TransformerException.java (original)
+++ xml/commons/trunk/java/external/src/javax/xml/transform/TransformerException.java Sun Aug 26 21:28:57 2007
@@ -23,7 +23,7 @@
 import java.lang.reflect.InvocationTargetException;
 
 /**
- * This class specifies an exceptional condition that occured
+ * This class specifies an exceptional condition that occurred
  * during the transformation process.
  */
 public class TransformerException extends Exception {
@@ -31,12 +31,12 @@
     // Added serialVersionUID to preserve binary compatibility 
     private static final long serialVersionUID = 975798773772956428L;
 
-    /** Field locator specifies where the error occured */
+    /** Field locator specifies where the error occurred */
     SourceLocator locator;
 
     /**
      * Method getLocator retrieves an instance of a SourceLocator
-     * object that specifies where an error occured.
+     * object that specifies where an error occurred.
      *
      * @return A SourceLocator object, or null if none was specified.
      */
@@ -46,7 +46,7 @@
 
     /**
      * Method setLocator sets an instance of a SourceLocator
-     * object that specifies where an error occured.
+     * object that specifies where an error occurred.
      *
      * @param location A SourceLocator object, or null to clear the location.
      */

Modified: xml/commons/trunk/java/external/src/javax/xml/transform/TransformerFactory.java
URL: http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/javax/xml/transform/TransformerFactory.java?rev=569994&r1=569993&r2=569994&view=diff
==============================================================================
--- xml/commons/trunk/java/external/src/javax/xml/transform/TransformerFactory.java (original)
+++ xml/commons/trunk/java/external/src/javax/xml/transform/TransformerFactory.java Sun Aug 26 21:28:57 2007
@@ -198,7 +198,7 @@
      *
      * @param source The XML source document.
      * @param media The media attribute to be matched.  May be null, in which
-     *      case the prefered templates will be used (i.e. alternate = no).
+     *      case the preferred templates will be used (i.e. alternate = no).
      * @param title The value of the title attribute to match.  May be null.
      * @param charset The value of the charset attribute to match.  May be null.
      *

Modified: xml/commons/trunk/java/external/src/javax/xml/transform/TransformerFactoryConfigurationError.java
URL: http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/javax/xml/transform/TransformerFactoryConfigurationError.java?rev=569994&r1=569993&r2=569994&view=diff
==============================================================================
--- xml/commons/trunk/java/external/src/javax/xml/transform/TransformerFactoryConfigurationError.java (original)
+++ xml/commons/trunk/java/external/src/javax/xml/transform/TransformerFactoryConfigurationError.java Sun Aug 26 21:28:57 2007
@@ -35,7 +35,7 @@
 
     /**
      * Create a new <code>TransformerFactoryConfigurationError</code> with no
-     * detail mesage.
+     * detail message.
      */
     public TransformerFactoryConfigurationError() {