aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/apps/CommandLineOptions.java
diff options
context:
space:
mode:
authorWilliam Victor Mote <vmote@apache.org>2003-09-01 13:31:24 +0000
committerWilliam Victor Mote <vmote@apache.org>2003-09-01 13:31:24 +0000
commitfb8f2aad4c5abf6fbca3950c97fc1244a5eea76b (patch)
treeba03586bf8bff778fb5606be5dcc7d55b7c5c548 /src/java/org/apache/fop/apps/CommandLineOptions.java
parent633eb0539172a3830b5d2503b960c524a0863655 (diff)
downloadxmlgraphics-fop-fb8f2aad4c5abf6fbca3950c97fc1244a5eea76b.tar.gz
xmlgraphics-fop-fb8f2aad4c5abf6fbca3950c97fc1244a5eea76b.zip
style/javadoc changes only
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196880 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/apps/CommandLineOptions.java')
-rw-r--r--src/java/org/apache/fop/apps/CommandLineOptions.java26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/java/org/apache/fop/apps/CommandLineOptions.java b/src/java/org/apache/fop/apps/CommandLineOptions.java
index d47a2aa6d..f31ba9596 100644
--- a/src/java/org/apache/fop/apps/CommandLineOptions.java
+++ b/src/java/org/apache/fop/apps/CommandLineOptions.java
@@ -64,31 +64,31 @@ import org.apache.avalon.framework.logger.Logger;
*/
public class CommandLineOptions {
- /* input / output not set */
+ /** input / output not set */
public static final int NOT_SET = 0;
- /* input: fo file */
+ /** input: fo file */
public static final int FO_INPUT = 1;
- /* input: xml+xsl file */
+ /** input: xml+xsl file */
public static final int XSLT_INPUT = 2;
- /* output: pdf file */
+ /** output: pdf file */
public static final int PDF_OUTPUT = 1;
- /* output: screen using swing */
+ /** output: screen using swing */
public static final int AWT_OUTPUT = 2;
- /* output: mif file */
+ /** output: mif file */
public static final int MIF_OUTPUT = 3;
- /* output: sent swing rendered file to printer */
+ /** output: sent swing rendered file to printer */
public static final int PRINT_OUTPUT = 4;
- /* output: pcl file */
+ /** output: pcl file */
public static final int PCL_OUTPUT = 5;
- /* output: postscript file */
+ /** output: postscript file */
public static final int PS_OUTPUT = 6;
- /* output: text file */
+ /** output: text file */
public static final int TXT_OUTPUT = 7;
- /* output: svg file */
+ /** output: svg file */
public static final int SVG_OUTPUT = 8;
- /* output: XML area tree */
+ /** output: XML area tree */
public static final int AREA_OUTPUT = 9;
- /* output: RTF file */
+ /** output: RTF file */
public static final int RTF_OUTPUT = 10;
/* show configuration information */