| org.griphyn.vdl.invocation.Invocation org.griphyn.vdl.invocation.JobStatus org.griphyn.vdl.invocation.JobStatusSignal
JobStatusSignal | public class JobStatusSignal extends JobStatus implements HasText(Code) | | This class is transient for XML parsing. The data value will be
incorporated into the job status classes.
author: Jens-S. Vöckler author: Yong Zhao version: $Revision: 50 $ See Also: StatCall |
Constructor Summary | |
public | JobStatusSignal() Default c'tor: Construct a hollow shell and allow further
information to be added later. | public | JobStatusSignal(short signo) Constructs an error number without reason text. | public | JobStatusSignal(short signo, boolean core) Constructs a piece of data. | public | JobStatusSignal(short signo, boolean core, String value) Constructs a piece of data.
Parameters: signo - is the error number. |
JobStatusSignal | public JobStatusSignal()(Code) | | Default c'tor: Construct a hollow shell and allow further
information to be added later.
|
JobStatusSignal | public JobStatusSignal(short signo)(Code) | | Constructs an error number without reason text.
Parameters: signo - is the error number |
JobStatusSignal | public JobStatusSignal(short signo, boolean core)(Code) | | Constructs a piece of data.
Parameters: signo - is the error number. Parameters: core - is the core flag. |
JobStatusSignal | public JobStatusSignal(short signo, boolean core, String value)(Code) | | Constructs a piece of data.
Parameters: signo - is the error number. Parameters: core - is the core flag. Parameters: value - is the textual error reason. |
appendValue | public void appendValue(String fragment)(Code) | | Appends a piece of text to the existing text.
Parameters: fragment - is a piece of text to append to existing text.Appending null is a noop. |
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. |
toXML | public String toXML(String indent)(Code) | | Dumps the state of the current element as XML output. This function
can return the necessary data more efficiently, thus overwriting
the inherited method.
Parameters: indent - is a String of spaces used for prettyprinting. The initial amount of spaces should be an empty string.The parameter is used internally for the recursive traversal. a String which contains the state of the current class andits siblings using XML. Note that these strings might become large. |
toXML | public void toXML(Writer stream, String indent, String namespace) throws IOException(Code) | | Dump the state of the current element as XML output. This function
traverses all sibling classes as necessary, and converts the data
into pretty-printed XML output. The stream interface should be able
to handle large output efficiently.
Parameters: stream - is a stream opened and ready for writing. This can alsobe a string stream for efficient output. Parameters: indent - is a String of spaces used for prettyprinting. The initial amount of spaces should be an empty string.The parameter is used internally for the recursive traversal.If a null value is specified, no indentation norlinefeeds will be generated. Parameters: namespace - is the XML schema namespace prefix. If neitherempty nor null, each element will be prefixed with this prefix,and the root element will map the XML namespace. exception: IOException - if something fishy happens to the stream. |
|
|