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 15:08:36 UTC

svn commit: r570099 - /xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/

Author: mrglavas
Date: Mon Aug 27 06:08:35 2007
New Revision: 570099

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

Modified:
    xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/ErrorListener.java
    xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/FactoryFinder.java
    xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/Templates.java
    xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerConfigurationException.java
    xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerException.java
    xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerFactory.java
    xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerFactoryConfigurationError.java
    xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/overview.html

Modified: xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/ErrorListener.java
URL: http://svn.apache.org/viewvc/xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/ErrorListener.java?rev=570099&r1=570098&r2=570099&view=diff
==============================================================================
--- xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/ErrorListener.java (original)
+++ xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/ErrorListener.java Mon Aug 27 06:08:35 2007
@@ -19,7 +19,7 @@
 
 /**
  * <p>To provide customized error handling, implement this interface and
- * use the setErrorListener method to register an instance of the implmentation
+ * use the setErrorListener method to register an instance of the implementation
  * with the {@link javax.xml.transform.Transformer}. The Transformer then reports
  * all errors and warnings through this interface.</p>
  *

Modified: xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/FactoryFinder.java
URL: http://svn.apache.org/viewvc/xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/FactoryFinder.java?rev=570099&r1=570098&r2=570099&view=diff
==============================================================================
--- xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/FactoryFinder.java (original)
+++ xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/FactoryFinder.java Mon Aug 27 06:08:35 2007
@@ -76,9 +76,9 @@
      * Main entry point.  Finds and creates a new instance of a concrete
      * factory implementation in the specified order as stated in the JAXP
      * spec.  This code attempts to find a factory implementation in
-     * serveral locations.  If one fails, the next one is tried.  To be
+     * several locations.  If one fails, the next one is tried.  To be
      * more robust, this occurs even if a SecurityException is thrown, but
-     * perhaps it may be better to propogate the SecurityException instead,
+     * perhaps it may be better to propagate the SecurityException instead,
      * so SecurityException-s are not masked.
      *
      * @return A new instance of the concrete factory class, never null

Modified: xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/Templates.java
URL: http://svn.apache.org/viewvc/xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/Templates.java?rev=570099&r1=570098&r2=570099&view=diff
==============================================================================
--- xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/Templates.java (original)
+++ xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/Templates.java Mon Aug 27 06:08:35 2007
@@ -23,7 +23,7 @@
  * An object that implements this interface is the runtime representation of processed
  * transformation instructions.
  *
- * <p>Templates must be threadsafe for a given instance
+ * <p>Templates must be thread-safe for a given instance
  * over multiple threads running concurrently, and may
  * be used multiple times in a given session.</p>
  */

Modified: xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerConfigurationException.java
URL: http://svn.apache.org/viewvc/xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerConfigurationException.java?rev=570099&r1=570098&r2=570099&view=diff
==============================================================================
--- xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerConfigurationException.java (original)
+++ xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerConfigurationException.java Mon Aug 27 06:08:35 2007
@@ -24,7 +24,7 @@
 
     /**
      * Create a new <code>TransformerConfigurationException</code> with no
-     * detail mesage.
+     * detail message.
      */
     public TransformerConfigurationException() {
         super("Configuration Error");

Modified: xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerException.java
URL: http://svn.apache.org/viewvc/xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerException.java?rev=570099&r1=570098&r2=570099&view=diff
==============================================================================
--- xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerException.java (original)
+++ xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerException.java Mon Aug 27 06:08:35 2007
@@ -24,19 +24,19 @@
 
 
 /**
- * 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 {
 
     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/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerFactory.java
URL: http://svn.apache.org/viewvc/xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerFactory.java?rev=570099&r1=570098&r2=570099&view=diff
==============================================================================
--- xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerFactory.java (original)
+++ xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerFactory.java Mon Aug 27 06:08:35 2007
@@ -83,7 +83,7 @@
      * error message to the ErrorListener and returns null).
      *
      * @throws TransformerFactoryConfigurationError
-     * if the implmentation is not available or cannot be instantiated.
+     * if the implementation is not available or cannot be instantiated.
      */
     public static TransformerFactory newInstance()
         throws TransformerFactoryConfigurationError
@@ -169,7 +169,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/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerFactoryConfigurationError.java
URL: http://svn.apache.org/viewvc/xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerFactoryConfigurationError.java?rev=570099&r1=570098&r2=570099&view=diff
==============================================================================
--- xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerFactoryConfigurationError.java (original)
+++ xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/TransformerFactoryConfigurationError.java Mon Aug 27 06:08:35 2007
@@ -29,7 +29,7 @@
 
     /**
      * Create a new <code>TransformerFactoryConfigurationError</code> with no
-     * detail mesage.
+     * detail message.
      */
     public TransformerFactoryConfigurationError() {
 

Modified: xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/overview.html
URL: http://svn.apache.org/viewvc/xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/overview.html?rev=570099&r1=570098&r2=570099&view=diff
==============================================================================
--- xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/overview.html (original)
+++ xml/commons/branches/tck-jaxp-1_2_0/java/external/src/javax/xml/transform/overview.html Mon Aug 27 06:08:35 2007
@@ -218,7 +218,7 @@
   Transformer objects, serve as a factory for Templates objects, and manage
   processor specific features.<br>
 <i>Thread safety: </i>A
-  TransformerFactory may not perform mulitple concurrent
+  TransformerFactory may not perform multiple concurrent
   operations.</p>
 <p>
 <b><a name="pattern-Templates">Templates</a></b>
@@ -228,7 +228,7 @@
   runtime representation of the transformation instructions.<br>
 <i>Responsibilities: </i>A data bag for transformation instructions; act as a factory
   for Transformers.<br>
-<i>Thread safety: </i>Threadsafe for concurrent
+<i>Thread safety: </i>Thread-safe for concurrent
   usage over multiple threads once construction is complete.</p>
 <p>
 <b><a name="pattern-Transformer">Transformer</a></b>
@@ -251,7 +251,7 @@
   single vendor-neutral object for multiple types of input.<br>
 <i>Responsibilities: </i>Act as simple data holder for System IDs, DOM nodes, streams,
   etc.<br>
-<i>Thread safety: </i>Threadsafe concurrently over multiple
+<i>Thread safety: </i>Thread-safe concurrently over multiple
   threads for read-only operations; must be synchronized for edit
   operations.</p>
 <p>
@@ -264,7 +264,7 @@
   method signatures.<br>
 <i>Responsibilities: </i>Act as simple data holder for
   output stream, DOM node, ContentHandler, etc.<br>
-<i>Thread safety: </i>Threadsafe concurrently over multiple threads for read-only,
+<i>Thread safety: </i>Thread-safe concurrently over multiple threads for read-only,
   must be synchronized for edit.</p>
 </ul>