Class JJTree
java.lang.Object
org.apache.tools.ant.ProjectComponent
org.apache.tools.ant.Task
org.apache.tools.ant.taskdefs.optional.javacc.JJTree
-
Field Summary
Fields inherited from class org.apache.tools.ant.ProjectComponent
description, location, project
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
execute()
Run the task.void
setBuildnodefiles
(boolean buildNodeFiles) Sets the BUILD_NODE_FILES grammar option.void
setJavacchome
(File javaccHome) The directory containing the JavaCC distribution.void
setMaxmemory
(String max) Corresponds -Xmx.void
setMulti
(boolean multi) Sets the MULTI grammar option.void
setNodedefaultvoid
(boolean nodeDefaultVoid) Sets the NODE_DEFAULT_VOID grammar option.void
setNodefactory
(boolean nodeFactory) Sets the NODE_FACTORY grammar option.void
setNodepackage
(String nodePackage) Sets the NODE_PACKAGE grammar option.void
setNodeprefix
(String nodePrefix) Sets the NODE_PREFIX grammar option.void
setNodescopehook
(boolean nodeScopeHook) Sets the NODE_SCOPE_HOOK grammar option.void
setNodeusesparser
(boolean nodeUsesParser) Sets the NODE_USES_PARSER grammar option.void
setOutputdirectory
(File outputDirectory) The directory to write the generated JavaCC grammar and node files to.void
setOutputfile
(String outputFile) The outputfile to write the generated JavaCC grammar file to.void
setStatic
(boolean staticParser) Sets the STATIC grammar option.void
The jjtree grammar file to process.void
setVisitor
(boolean visitor) Sets the VISITOR grammar option.void
setVisitorException
(String visitorException) Sets the VISITOR_EXCEPTION grammar option.Methods inherited from class org.apache.tools.ant.Task
bindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType
Methods inherited from class org.apache.tools.ant.ProjectComponent
clone, getDescription, getLocation, getProject, setDescription, setLocation, setProject
-
Constructor Details
-
JJTree
public JJTree()Constructor
-
-
Method Details
-
setBuildnodefiles
public void setBuildnodefiles(boolean buildNodeFiles) Sets the BUILD_NODE_FILES grammar option.- Parameters:
buildNodeFiles
- aboolean
value.
-
setMulti
public void setMulti(boolean multi) Sets the MULTI grammar option.- Parameters:
multi
- aboolean
value.
-
setNodedefaultvoid
public void setNodedefaultvoid(boolean nodeDefaultVoid) Sets the NODE_DEFAULT_VOID grammar option.- Parameters:
nodeDefaultVoid
- aboolean
value.
-
setNodefactory
public void setNodefactory(boolean nodeFactory) Sets the NODE_FACTORY grammar option.- Parameters:
nodeFactory
- aboolean
value.
-
setNodescopehook
public void setNodescopehook(boolean nodeScopeHook) Sets the NODE_SCOPE_HOOK grammar option.- Parameters:
nodeScopeHook
- aboolean
value.
-
setNodeusesparser
public void setNodeusesparser(boolean nodeUsesParser) Sets the NODE_USES_PARSER grammar option.- Parameters:
nodeUsesParser
- aboolean
value.
-
setStatic
public void setStatic(boolean staticParser) Sets the STATIC grammar option.- Parameters:
staticParser
- aboolean
value.
-
setVisitor
public void setVisitor(boolean visitor) Sets the VISITOR grammar option.- Parameters:
visitor
- aboolean
value.
-
setNodepackage
Sets the NODE_PACKAGE grammar option.- Parameters:
nodePackage
- the option to use.
-
setVisitorException
Sets the VISITOR_EXCEPTION grammar option.- Parameters:
visitorException
- the option to use.
-
setNodeprefix
Sets the NODE_PREFIX grammar option.- Parameters:
nodePrefix
- the option to use.
-
setOutputdirectory
The directory to write the generated JavaCC grammar and node files to. If not set, the files are written to the directory containing the grammar file.- Parameters:
outputDirectory
- the output directory.
-
setOutputfile
The outputfile to write the generated JavaCC grammar file to. If not set, the file is written with the same name as the JJTree grammar file with a suffix .jj.- Parameters:
outputFile
- the output file name.
-
setTarget
The jjtree grammar file to process.- Parameters:
targetFile
- the grammar file.
-
setJavacchome
The directory containing the JavaCC distribution.- Parameters:
javaccHome
- the directory containing JavaCC.
-
setMaxmemory
Corresponds -Xmx.- Parameters:
max
- max memory parameter.- Since:
- Ant 1.8.3
-
execute
Run the task.- Overrides:
execute
in classTask
- Throws:
BuildException
- on error.
-