| org.griphyn.vdl.invocation.HasText
All known Subclasses: org.griphyn.vdl.invocation.WorkingDir, org.griphyn.vdl.invocation.ArgEntry, org.griphyn.vdl.invocation.ArgString, org.griphyn.vdl.invocation.Ignore, org.griphyn.vdl.invocation.File, org.griphyn.vdl.invocation.JobStatusSuspend, org.griphyn.vdl.invocation.EnvEntry, org.griphyn.vdl.invocation.JobStatusFailure, org.griphyn.vdl.invocation.JobStatusSignal, org.griphyn.vdl.invocation.Data, org.griphyn.vdl.invocation.CommandLine, org.griphyn.vdl.invocation.Architecture,
HasText | public interface HasText (Code) | | This interface defines a common base for all elements in an invocation
record that can carry text in their values. It exists primarily for
grouping purposes and for easier access through the character SAX
callback. Due to the fact that SAX may present text in several chunks,
all text-carrying classes must also provide the append function.
author: Jens-S. Vöckler author: Yong Zhao version: $Revision: 50 $ |
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. |
|
|