| org.griphyn.vdl.invocation.Invocation org.griphyn.vdl.invocation.File org.griphyn.vdl.invocation.Temporary
All known Subclasses: org.griphyn.vdl.invocation.Fifo,
Temporary | public class Temporary extends File implements HasDescriptor,HasFilename(Code) | | This class is the container for a temporary file object. A temporary
file object contains a filename and a file descriptor.
author: Jens-S. Vöckler author: Yong Zhao version: $Revision: 50 $ |
Constructor Summary | |
public | Temporary() Default c'tor: Construct a hollow shell and allow further
information to be added later. | public | Temporary(String filename, int descriptor) Constructs a temporary file object.
Parameters: filename - is the name of the file that stat was invoked Parameters: descriptor - is a valid file descriptor number. |
m_descriptor | protected int m_descriptor(Code) | | Descriptor of the file.
|
m_filename | protected String m_filename(Code) | | Name of the file.
|
Temporary | public Temporary()(Code) | | Default c'tor: Construct a hollow shell and allow further
information to be added later.
|
Temporary | public Temporary(String filename, int descriptor)(Code) | | Constructs a temporary file object.
Parameters: filename - is the name of the file that stat was invoked Parameters: descriptor - is a valid file descriptor number. |
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. |
|
|