]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Minor edits.
authorGlen Mazza <gmazza@apache.org>
Sun, 22 Aug 2004 01:56:33 +0000 (01:56 +0000)
committerGlen Mazza <gmazza@apache.org>
Sun, 22 Aug 2004 01:56:33 +0000 (01:56 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197886 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/apps/CommandLineOptions.java
src/java/org/apache/fop/fo/FObjMixed.java

index d2f4cdc57f9c50ac1a9f4bbe6e2163d0bf749803..692de33abb77ac26a6aa90cee42a43ebc0fabd1b 100644 (file)
@@ -499,14 +499,6 @@ public class CommandLineOptions implements Constants {
         return foUserAgent;
     }
 
-    /**
-     * Returns the input mode (type of input data, ex. NOT_SET or FO_INPUT)
-     * @return the input mode
-     */
-    public int getInputMode() {
-        return inputmode;
-    }
-
     /**
      * Returns the output mode (output format, ex. NOT_SET or RENDER_PDF)
      * @return the output mode
@@ -556,7 +548,7 @@ public class CommandLineOptions implements Constants {
     }
 
     /**
-     * Indicates whether the XML renderer should generate course area XML
+     * Indicates whether the XML renderer should generate coarse area XML
      * @return true if coarse area XML is desired
      */
     public Boolean isCoarseAreaXml() {
@@ -596,8 +588,8 @@ public class CommandLineOptions implements Constants {
             + "  -fo  infile       xsl:fo input file  \n"
             + "  -xml infile       xml input file, must be used together with -xsl \n"
             + "  -xsl stylesheet   xslt stylesheet \n \n"
-/*            + "  -param name value <value> to use for parameter <name> in xslt stylesheet\n"
-            + "                    (repeat '-param name value' for each parameter)\n \n" */
+            + "  -param name value <value> to use for parameter <name> in xslt stylesheet\n"
+            + "                    (repeat '-param name value' for each parameter)\n \n" 
             + " [OUTPUT] \n"
             + "  outfile           input will be rendered as pdf file into outfile \n"
             + "  -pdf outfile      input will be rendered as pdf file (outfile req'd) \n"
index 902bd3457551cb8fce3e195e9c911749b9f96466..f513998d7cd24368725a38ad9a6a4d9cc1c6fab0 100644 (file)
@@ -57,9 +57,7 @@ public class FObjMixed extends FObj {
         FOText ft = new FOText(data, start, length, textInfo, this);
         ft.setLocation(locator);
         
-        /* characters() processing empty for FOTreeHandler, not empty for RTF & MIFHandlers */
         getFOInputHandler().characters(ft.ca, ft.startIndex, ft.endIndex);
-
         addChildNode(ft);
     }