org.apache.tools.ant.taskdefs
public class ExecuteJava extends Object implements Runnable, TimeoutObserver
Since: Ant 1.2
Method Summary | |
---|---|
void | execute(Project project)
Execute the Java class against the specified Ant Project. |
int | fork(ProjectComponent pc)
Run the Java command in a separate VM, this does not give you
the full flexibility of the Java task, but may be enough for
simple needs. |
boolean | killedProcess()
Get whether the process was killed. |
void | run()
Run this ExecuteJava in a Thread. |
void | setClasspath(Path p)
Set the classpath to be used when running the Java class.
|
void | setJavaCommand(Commandline javaCommand)
Set the Java "command" for this ExecuteJava. |
void | setOutput(PrintStream out)
Set the stream to which all output (System.out as well as System.err)
will be written. |
void | setPermissions(Permissions permissions)
Set the permissions for the application run. |
void | setSystemProperties(CommandlineJava.SysProperties s)
Set the system properties to use when running the Java class. |
void | setTimeout(Long timeout)
Set the timeout for this ExecuteJava. |
static void | setupCommandLineForVMS(Execute exe, String[] command)
On VMS platform, we need to create a special java options file
containing the arguments and classpath for the java command.
|
void | timeoutOccured(Watchdog w)
Mark timeout as having occurred. |
Parameters: project the Project to use.
Throws: BuildException on error.
Parameters: pc the ProjectComponent to use for logging, etc.
Returns: the exit status of the subprocess.
Throws: BuildException on error.
Since: Ant 1.6.3
Returns: true
if the process was killed, false otherwise.
Since: 1.19, Ant 1.5
Since: Ant 1.5
Parameters: p an Ant Path object containing the classpath.
Parameters: javaCommand the classname and arguments in a Commandline.
Deprecated: since 1.4.x. manage output at the task level.
Set the stream to which all output (System.out as well as System.err) will be written.Parameters: out the PrintStream where output should be sent.
Parameters: permissions the Permissions to use.
Since: Ant 1.6
Parameters: s CommandlineJava system properties.
Parameters: timeout timeout as Long.
Since: Ant 1.5
Parameters: exe the Execute instance to alter. command the command-line.
Parameters: w the responsible Watchdog.
Since: Ant 1.5