| org.griphyn.vdl.invocation.Invocation org.griphyn.vdl.invocation.File
All known Subclasses: org.griphyn.vdl.invocation.Temporary, org.griphyn.vdl.invocation.Regular, org.griphyn.vdl.invocation.Descriptor,
File | abstract public class File extends Invocation implements HasText(Code) | | This class is the base class for a file object.
author: Jens-S. Vöckler author: Yong Zhao version: $Revision: 50 $ |
Field Summary | |
protected String | m_hexbyte optional first 16 byte of file, or less if shorter. |
Constructor Summary | |
public | File() Default c'tor: Construct a hollow shell and allow further
information to be added later. | public | File(String value) C'tor: Constructs the value in the base class. |
Method Summary | |
public void | appendValue(String fragment) Appends a piece of text to the existing text. | public String | getValue() | public void | setValue(String hexbyte) 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_hexbyte | protected String m_hexbyte(Code) | | optional first 16 byte of file, or less if shorter.
|
File | public File()(Code) | | Default c'tor: Construct a hollow shell and allow further
information to be added later.
|
File | public File(String value)(Code) | | C'tor: Constructs the value in the base class.
Parameters: value - is all or part of the hex bytes. |
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. |
|
|