]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Added comments on what to use instead to deprecated methods.
authorJoerg Pietschmann <pietsch@apache.org>
Sun, 23 Feb 2003 20:27:41 +0000 (20:27 +0000)
committerJoerg Pietschmann <pietsch@apache.org>
Sun, 23 Feb 2003 20:27:41 +0000 (20:27 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/fop-0_20_2-maintain@195978 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/apps/TraxInputHandler.java
src/org/apache/fop/apps/XSLTInputHandler.java

index df6cd5d3f0874e8cbf5bf911d27a282817e0cba9..9e2751f1ae578d4b855bee991ecee14089c23a93 100644 (file)
@@ -73,7 +73,8 @@ public class TraxInputHandler extends InputHandler {
     }
 
     /**
-     * overwrites the method of the super class to return the xmlfile
+     * Overwrites the method of the super class to return the xmlfile.
+     * Use run(Driver driver) instead.
      * @deprecated
      */
     public InputSource getInputSource() {
@@ -84,9 +85,10 @@ public class TraxInputHandler extends InputHandler {
     }
 
     /**
-     * overwrites this method of the super class and returns an XMLFilter 
-     instead of a
-     * simple XMLReader which allows chaining of transformations
+     * Overwrites this method of the super class and returns an
+     * XMLFilter instead of a simple XMLReader which allows chaining
+     * of transformations.
+     * Use run(Driver driver) instead.
      * @deprecated
      *
      */
index dcfa7eb8a5e65ea8d831146cff6e62b5eced04c7..0beef1deee9d9477ab6829600174712b1e096b33 100644 (file)
@@ -19,6 +19,7 @@ import java.io.*;
  * XSLTInputHandler takes an XML input, transforms it with XSLT
  * and provides the resulting xsl:fo document as input for the
  * FOP driver.
+ * Use TraxInputHandler instead.
  */
 public class XSLTInputHandler extends InputHandler {
     private TraxInputHandler traxInputHandler;
@@ -40,6 +41,7 @@ public class XSLTInputHandler extends InputHandler {
 
     /**
      * Get the InputSource.
+     * Use TraxInputHandler run(Driver driver) instead.
      * @deprecated
      */
     public InputSource getInputSource() {
@@ -48,6 +50,7 @@ public class XSLTInputHandler extends InputHandler {
 
     /**
      * Get the parser, actually an XML filter.
+     * Use TraxInputHandler run(Driver driver) instead.
      * @deprecated
      */
     public XMLReader getParser() throws FOPException {