]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
some javadoc changes
authorWilliam Victor Mote <vmote@apache.org>
Mon, 11 Aug 2003 17:44:15 +0000 (17:44 +0000)
committerWilliam Victor Mote <vmote@apache.org>
Mon, 11 Aug 2003 17:44:15 +0000 (17:44 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196780 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/apps/Driver.java

index 0baab114c9794674cb93cbbf2a869401fa902b3d..796dc3261c60ad43b02e84514657316d00c866ca 100644 (file)
@@ -197,7 +197,7 @@ public class Driver implements LogEnabled {
     private Renderer renderer;
 
     /**
-     * the structure handler
+     * the SAX ContentHandler
      */
     private FOInputHandler foInputHandler;
 
@@ -510,12 +510,12 @@ public class Driver implements LogEnabled {
     }
 
     /**
-     * Returns the tree builder (a SAX ContentHandler).
-     *
-     * Used in situations where SAX is used but not via a FOP-invoked
-     * SAX parser. A good example is an XSLT engine that fires SAX
-     * events but isn't a SAX Parser itself.
-     * @return a content handler for handling the SAX events.
+     * Determines which SAX ContentHandler is appropriate for the rendererType.
+     * Structure renderers (e.g. MIF & RTF) each have a specialized
+     * ContentHandler that directly place data into the output stream. Layout
+     * renderers (e.g. PDF & PostScript) use a ContentHandler that builds an FO
+     * Tree.
+     * @return a SAX ContentHandler for handling the SAX events.
      */
     public ContentHandler getContentHandler() {
         if (!isInitialized()) {