diff options
author | Vincent Hennebert <vhennebert@apache.org> | 2009-10-21 16:31:59 +0000 |
---|---|---|
committer | Vincent Hennebert <vhennebert@apache.org> | 2009-10-21 16:31:59 +0000 |
commit | 7859b3ed2d10c712c35644164d7703192e3985d8 (patch) | |
tree | dfcb89e41517875f6f73210628e35b871e017d53 /src/java/org/apache/fop/cli | |
parent | ac5f083758e5f884c854cc886404aac823545e1b (diff) | |
download | xmlgraphics-fop-7859b3ed2d10c712c35644164d7703192e3985d8.tar.gz xmlgraphics-fop-7859b3ed2d10c712c35644164d7703192e3985d8.zip |
Renamed TransformerNode into TransformerDefaultHandler and moved it into the a.o.f.util package.
Renamed TransformerNodeEndProcessing into AccessibilityPreprocessor.
Renamed AccessibilityUtil into Accessibility and simplified the code.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_Accessibility@828090 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/cli')
-rw-r--r-- | src/java/org/apache/fop/cli/CommandLineOptions.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/cli/CommandLineOptions.java b/src/java/org/apache/fop/cli/CommandLineOptions.java index e0dc0a057..043dfe3c8 100644 --- a/src/java/org/apache/fop/cli/CommandLineOptions.java +++ b/src/java/org/apache/fop/cli/CommandLineOptions.java @@ -36,7 +36,7 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.fop.Version; -import org.apache.fop.accessibility.AccessibilityUtil; +import org.apache.fop.accessibility.Accessibility; import org.apache.fop.apps.FOPException; import org.apache.fop.apps.FOUserAgent; import org.apache.fop.apps.FopFactory; @@ -342,7 +342,7 @@ public class CommandLineOptions { } else if (args[i].equals("-if")) { i = i + parseIntermediateFormatOption(args, i); } else if (args[i].equals("-a")) { - this.renderingOptions.put(AccessibilityUtil.ACCESSIBILITY, Boolean.TRUE); + this.renderingOptions.put(Accessibility.ACCESSIBILITY, Boolean.TRUE); } else if (args[i].equals("-v")) { /* Currently just print the version */ printVersion(); |