Class Arguments
- java.lang.Object
-
- org.griphyn.vdl.Chimera
-
- edu.isi.pegasus.planner.invocation.Invocation
-
- edu.isi.pegasus.planner.invocation.Arguments
-
- All Implemented Interfaces:
java.io.Serializable
public abstract class Arguments extends Invocation
This class maintains the application that was run, and the arguments to the commandline that were actually passed on to the application.- Version:
- $Revision$
- Author:
- Jens-S. Vöckler, Yong Zhao
- See Also:
Job, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Stringm_executableThis is the executable that was run.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetExecutable()Accessorabstract java.lang.StringgetValue()This abstract method is called by higher-level functions to obtain a single string representation of the arguments.voidsetExecutable(java.lang.String executable)Accessor.voidtoString(java.io.Writer stream)Converts the active state into something meant for human consumption.
-
-
-
Method Detail
-
getValue
public abstract java.lang.String getValue()
This abstract method is called by higher-level functions to obtain a single string representation of the arguments.- Returns:
- string representing arguments, or
nullif there is no such string. The empty string is also possible.
-
getExecutable
public java.lang.String getExecutable()
Accessor- See Also:
setExecutable(String)
-
setExecutable
public void setExecutable(java.lang.String executable)
Accessor.- Parameters:
executable-- See Also:
getExecutable()
-
toString
public void toString(java.io.Writer stream) throws java.io.IOExceptionConverts the active state into something meant for human consumption. The method will be called when recursively traversing the instance tree.- Specified by:
toStringin classorg.griphyn.vdl.Chimera- Parameters:
stream- is a stream opened and ready for writing. This can also be a string stream for efficient output.- Throws:
java.io.IOException- if something fishy happens to the stream.
-
-