public abstract class Arguments extends Invocation
Job
,
Serialized FormModifier and Type | Field and Description |
---|---|
protected java.lang.String |
m_executable
This is the executable that was run.
|
Constructor and Description |
---|
Arguments()
Default c'tor: Construct a hollow shell and allow further
information to be added later.
|
Arguments(java.lang.String executable)
Constructs an applications without arguments.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getExecutable()
Accessor
|
abstract java.lang.String |
getValue()
This abstract method is called by higher-level functions to
obtain a single string representation of the arguments.
|
void |
setExecutable(java.lang.String executable)
Accessor.
|
void |
toString(java.io.Writer stream)
Converts the active state into something meant for human consumption.
|
protected java.lang.String m_executable
public Arguments()
public Arguments(java.lang.String executable)
executable
- is the name of the application.public abstract java.lang.String getValue()
null
if there is no such string. The empty string is also possible.public java.lang.String getExecutable()
setExecutable(String)
public void setExecutable(java.lang.String executable)
executable
- getExecutable()
public void toString(java.io.Writer stream) throws java.io.IOException
toString
in class org.griphyn.vdl.Chimera
stream
- is a stream opened and ready for writing. This can also
be a string stream for efficient output.java.io.IOException
- if something fishy happens to the stream.