Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Object
org.apache.tools.ant.ProjectComponent
org.apache.tools.ant.Task
org.apache.tools.ant.taskdefs.MatchingTask
org.apache.tools.ant.taskdefs.optional.NetRexxC
public class NetRexxC
extends MatchingTask
Nested Class Summary | |
static class |
|
static class |
|
Field Summary |
Fields inherited from class org.apache.tools.ant.taskdefs.MatchingTask | |
fileset |
Fields inherited from class org.apache.tools.ant.ProjectComponent | |
description , location , project |
Method Summary | |
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
Methods inherited from class org.apache.tools.ant.taskdefs.MatchingTask | |
XsetIgnore , XsetItems , add , addAnd , addContains , addContainsRegexp , addCustom , addDate , addDepend , addDepth , addDifferent , addFilename , addMajority , addModified , addNone , addNot , addOr , addPresent , addSelector , addSize , addType , appendSelector , createExclude , createExcludesFile , createInclude , createIncludesFile , createPatternSet , getDirectoryScanner , getImplicitFileSet , getSelectors , hasSelectors , selectorCount , selectorElements , setCaseSensitive , setDefaultexcludes , setExcludes , setExcludesfile , setFollowSymlinks , setIncludes , setIncludesfile , setProject |
Methods inherited from class org.apache.tools.ant.Task | |
bindToOwner , execute , 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 , log , log , setDescription , setLocation , setProject |
public void execute() throws BuildException
Executes the task - performs the actual compiler call.
- Throws:
BuildException
- on error.
public void init()
init-Method sets defaults from Properties. That way, when ant is called with arguments like -Dant.netrexxc.verbose=verbose5 one can easily take control of all netrexxc-tasks.
public void setBinary(boolean binary)
Set whether literals are treated as binary, rather than NetRexx types.
- Parameters:
binary
- aboolean
value.
public void setClasspath(String classpath)
Set the classpath used for NetRexx compilation.
- Parameters:
classpath
- the classpath to use.
public void setComments(boolean comments)
Set whether comments are passed through to the generated java source. Valid true values are "on" or "true". Anything else sets the flag to false. The default value is false
- Parameters:
comments
- aboolean
value.
public void setCompact(boolean compact)
Set whether error messages come out in compact or verbose format. Valid true values are "on" or "true". Anything else sets the flag to false. The default value is false
- Parameters:
compact
- aboolean
value.
public void setCompile(boolean compile)
Set whether the NetRexx compiler should compile the generated java code Valid true values are "on" or "true". Anything else sets the flag to false. The default value is true. Setting this flag to false, will automatically set the keep flag to true.
- Parameters:
compile
- aboolean
value.
public void setConsole(boolean console)
Set whether or not messages should be displayed on the 'console' Valid true values are "on" or "true". Anything else sets the flag to false. The default value is true.
- Parameters:
console
- aboolean
value.
public void setCrossref(boolean crossref)
Whether variable cross references are generated.
- Parameters:
crossref
- aboolean
value.
public void setDecimal(boolean decimal)
Set whether decimal arithmetic should be used for the netrexx code. Binary arithmetic is used when this flag is turned off. Valid true values are "on" or "true". Anything else sets the flag to false. The default value is true.
- Parameters:
decimal
- aboolean
value.
public void setDestDir(File destDirName)
Set the destination directory into which the NetRexx source files should be copied and then compiled.
- Parameters:
destDirName
- the destination directory.
public void setDiag(boolean diag)
Whether diagnostic information about the compile is generated
- Parameters:
diag
- aboolean
value.
public void setExplicit(boolean explicit)
Sets whether variables must be declared explicitly before use. Valid true values are "on" or "true". Anything else sets the flag to false. The default value is false.
- Parameters:
explicit
- aboolean
value.
public void setFormat(boolean format)
Whether the generated java code is formatted nicely or left to match NetRexx line numbers for call stack debugging.
- Parameters:
format
- aboolean
value.
public void setJava(boolean java)
Whether the generated java code is produced Valid true values are "on" or "true". Anything else sets the flag to false. The default value is false.
- Parameters:
java
- aboolean
value.
public void setKeep(boolean keep)
Sets whether the generated java source file should be kept after compilation. The generated files will have an extension of .java.keep, not .java Valid true values are "on" or "true". Anything else sets the flag to false. The default value is false.
- Parameters:
keep
- aboolean
value.
public void setLogo(boolean logo)
Whether the compiler text logo is displayed when compiling.
- Parameters:
logo
- aboolean
value.
public void setReplace(boolean replace)
Whether the generated .java file should be replaced when compiling Valid true values are "on" or "true". Anything else sets the flag to false. The default value is false.
- Parameters:
replace
- aboolean
value.
public void setSavelog(boolean savelog)
Sets whether the compiler messages will be written to NetRexxC.log as well as to the console Valid true values are "on" or "true". Anything else sets the flag to false. The default value is false.
- Parameters:
savelog
- aboolean
value.
public void setSourcedir(boolean sourcedir)
Tells the NetRexx compiler to store the class files in the same directory as the source files. The alternative is the working directory Valid true values are "on" or "true". Anything else sets the flag to false. The default value is true.
- Parameters:
sourcedir
- aboolean
value.
public void setSrcDir(File srcDirName)
Set the source dir to find the source Java files.
- Parameters:
srcDirName
- the source directory.
public void setStrictargs(boolean strictargs)
Tells the NetRexx compiler that method calls always need parentheses, even if no arguments are needed, e.g.aStringVar.getBytes
vs.aStringVar.getBytes()
Valid true values are "on" or "true". Anything else sets the flag to false. The default value is false.
- Parameters:
strictargs
- aboolean
value.
public void setStrictassign(boolean strictassign)
Tells the NetRexx compile that assignments must match exactly on type.
- Parameters:
strictassign
- aboolean
value.
public void setStrictcase(boolean strictcase)
Specifies whether the NetRexx compiler should be case sensitive or not.
- Parameters:
strictcase
- aboolean
value.
public void setStrictimport(boolean strictimport)
Sets whether classes need to be imported explicitly using animport
statement. By default the NetRexx compiler will import certain packages automatically Valid true values are "on" or "true". Anything else sets the flag to false. The default value is false.
- Parameters:
strictimport
- aboolean
value.
public void setStrictprops(boolean strictprops)
Sets whether local properties need to be qualified explicitly usingthis
Valid true values are "on" or "true". Anything else sets the flag to false. The default value is false.
- Parameters:
strictprops
- aboolean
value.
public void setStrictsignal(boolean strictsignal)
Whether the compiler should force catching of exceptions by explicitly named types.
- Parameters:
strictsignal
- aboolean
value.
public void setSuppressDeprecation(boolean suppressDeprecation)
Tells whether we should filter out any deprecation-messages of the compiler out.
- Parameters:
suppressDeprecation
- aboolean
value.
public void setSuppressExceptionNotSignalled(boolean suppressExceptionNotSignalled)
Whether the task should suppress the "FooException is in SIGNALS list but is not signalled within the method", which is sometimes rather useless. The warning is logged as verbose message, though.
- Parameters:
suppressExceptionNotSignalled
- aboolean
value.
public void setSuppressMethodArgumentNotUsed(boolean suppressMethodArgumentNotUsed)
Whether the task should suppress the "Method argument is not used" in strictargs-Mode, which can not be suppressed by the compiler itself. The warning is logged as verbose message, though.
- Parameters:
suppressMethodArgumentNotUsed
- aboolean
value.
public void setSuppressPrivatePropertyNotUsed(boolean suppressPrivatePropertyNotUsed)
Whether the task should suppress the "Private property is defined but not used" in strictargs-Mode, which can be quite annoying while developing. The warning is logged as verbose message, though.
- Parameters:
suppressPrivatePropertyNotUsed
- aboolean
value.
public void setSuppressVariableNotUsed(boolean suppressVariableNotUsed)
Whether the task should suppress the "Variable is set but not used" in strictargs-Mode. Be careful with this one! The warning is logged as verbose message, though.
- Parameters:
suppressVariableNotUsed
- aboolean
value.
public void setSymbols(boolean symbols)
Sets whether debug symbols should be generated into the class file Valid true values are "on" or "true". Anything else sets the flag to false. The default value is false.
- Parameters:
symbols
- aboolean
value.
public void setTime(boolean time)
Asks the NetRexx compiler to print compilation times to the console Valid true values are "on" or "true". Anything else sets the flag to false. The default value is false.
- Parameters:
time
- aboolean
value.
public void setTrace(String trace)
Turns on or off tracing and directs the resultant trace output Valid values are: "trace", "trace1", "trace2" and "notrace". "trace" and "trace2".
- Parameters:
trace
- the value to set.
public void setTrace(NetRexxC.TraceAttr trace)
Turns on or off tracing and directs the resultant trace output Valid values are: "trace", "trace1", "trace2" and "notrace". "trace" and "trace2".
- Parameters:
trace
- the value to set.
public void setUtf8(boolean utf8)
Tells the NetRexx compiler that the source is in UTF8 Valid true values are "on" or "true". Anything else sets the flag to false. The default value is false.
- Parameters:
utf8
- aboolean
value.
public void setVerbose(String verbose)
Whether lots of warnings and error messages should be generated
- Parameters:
verbose
- the value to set - verbose<level> or noverbose.
public void setVerbose(NetRexxC.VerboseAttr verbose)
Whether lots of warnings and error messages should be generated
- Parameters:
verbose
- the value to set - verbose<level> or noverbose.