| org.griphyn.vdl.invocation.Invocation org.griphyn.vdl.invocation.Arguments
All known Subclasses: org.griphyn.vdl.invocation.ArgString, org.griphyn.vdl.invocation.ArgVector,
Arguments | abstract public class Arguments extends Invocation (Code) | | This class maintains the application that was run, and the
arguments to the commandline that were actually passed on to
the application.
author: Jens-S. Vöckler author: Yong Zhao version: $Revision: 50 $ See Also: Job |
Constructor Summary | |
public | Arguments() Default c'tor: Construct a hollow shell and allow further
information to be added later. | public | Arguments(String executable) Constructs an applications without arguments. |
Method Summary | |
public String | getExecutable() | abstract public String | getValue() This abstract method is called by higher-level functions to
obtain a single string representation of the arguments. | public void | setExecutable(String executable) Accessor. | public void | toString(Writer stream) Converts the active state into something meant for human consumption.
The method will be called when recursively traversing the instance
tree. |
m_executable | protected String m_executable(Code) | | This is the executable that was run.
|
Arguments | public Arguments()(Code) | | Default c'tor: Construct a hollow shell and allow further
information to be added later.
|
Arguments | public Arguments(String executable)(Code) | | Constructs an applications without arguments.
Parameters: executable - is the name of the application. |
getValue | abstract public String getValue()(Code) | | This abstract method is called by higher-level functions to
obtain a single string representation of the arguments.
string representing arguments, or null if there is no such string. The empty string is also possible. |
toString | public void toString(Writer stream) throws IOException(Code) | | Converts the active state into something meant for human consumption.
The method will be called when recursively traversing the instance
tree.
Parameters: stream - is a stream opened and ready for writing. This can alsobe a string stream for efficient output. |
|
|