All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----COM.ibm.jaws.motk.StringProducer
source = dtoken EOF dtoken = token separator | begin | end begin = ; a single specified character end = ; a single specified character separator = ; a single specified character token = ; any sequence of characters including escaped versions of the begin, end, and separator charactersIf white space is allowed then any amount of white space may be inserted between any two elements except inside a token. Whitespace that is at the begining or end of a token will need to be escaped or it will be lost. begin, end or separator characters that occur in a token must be escaped.
Note: begin marks are fully supported and, if present, they must be explicity read with readBegin. However, they need not be present at all.
public StringProducer()
public String read() throws IOException
public abstract void read(StringBuffer buf) throws IOException
public abstract void readBegin() throws IOException
public abstract boolean atEnd() throws IOException
public abstract void readEnd() throws IOException
public abstract boolean atEOF() throws IOException
All Packages Class Hierarchy This Package Previous Next Index