sboag       00/05/26 13:48:07

  Modified:    src/org/apache/xalan/xslt XSLTProcessor.java
  Log:
  Added lexical handler support from branch.
  
  Revision  Changes    Path
  1.13      +2 -1      xml-xalan/src/org/apache/xalan/xslt/XSLTProcessor.java
  
  Index: XSLTProcessor.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/src/org/apache/xalan/xslt/XSLTProcessor.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- XSLTProcessor.java        2000/03/02 10:23:09     1.12
  +++ XSLTProcessor.java        2000/05/26 20:48:07     1.13
  @@ -75,6 +75,7 @@
   import java.io.OutputStream;
   import java.io.UnsupportedEncodingException;
   import org.apache.xml.serialize.OutputFormat;
  +import org.xml.sax.ext.LexicalHandler;
   
   /**
    * <meta name="usage" content="general"/>
  @@ -92,7 +93,7 @@
    *
    * <p>If you reuse the processor instance, you should call reset() between 
transformations.</p>
    */
  -public interface XSLTProcessor extends DocumentHandler
  +public interface XSLTProcessor extends DocumentHandler, LexicalHandler
   {
     /**
      * Use the XSL stylesheet to transform the XML input, placing the result 
in the result tree.
  
  
  

Reply via email to