You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by sb...@apache.org on 2001/01/03 10:57:47 UTC

cvs commit: xml-xalan/java/src/javax/xml/transform ErrorListener.java

sboag       01/01/03 01:57:47

  Modified:    java/src/javax/xml/transform ErrorListener.java
  Log:
  Fixed javadoc on error method.
  
  Revision  Changes    Path
  1.5       +9 -8      xml-xalan/java/src/javax/xml/transform/ErrorListener.java
  
  Index: ErrorListener.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/javax/xml/transform/ErrorListener.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ErrorListener.java	2000/12/20 04:55:19	1.4
  +++ ErrorListener.java	2001/01/03 09:57:47	1.5
  @@ -55,7 +55,7 @@
    * <http://www.apache.org/>.
    */
   /**
  - * $Id: ErrorListener.java,v 1.4 2000/12/20 04:55:19 sboag Exp $
  + * $Id: ErrorListener.java,v 1.5 2001/01/03 09:57:47 sboag Exp $
    */
   package javax.xml.transform;
   
  @@ -103,9 +103,10 @@
       /**
        * Receive notification of a recoverable error.
        *
  -     * <p>The transformer must continue to provide normal parsing events
  +     * <p>The transformer must continue to try and provide normal transformation
        * after invoking this method.  It should still be possible for the
  -     * application to process the document through to the end.</p>
  +     * application to process the document through to the end if no other errors 
  +     * are encountered.</p>
        *
        * @param exception The error information encapsulated in a
        *                  transformer exception.
  @@ -121,11 +122,11 @@
       /**
        * Receive notification of a non-recoverable error.
        *
  -     * <p>The application must assume that the transformation cannot
  -     * continue after the Transformer has invoked this method,
  -     * and should continue (if at all) only to collect
  -     * addition error messages. In fact, Transformers are free
  -     * to stop reporting events once this method has been invoked.</p>
  +     * <p>The transformer must continue to try and provide normal transformation
  +     * after invoking this method.  It should still be possible for the
  +     * application to process the document through to the end if no other errors 
  +     * are encountered, but there is no guarantee that the output will be 
  +     * useable.</p>
        *
        * @param exception The error information encapsulated in a
        *                  transformer exception.