All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----java.io.Writer | +----com.jclark.xml.output.XMLWriter
Writer
for writing XML documents.
The normal write
methods write character data,
automatically escaping markup characters.
protected XMLWriter(Object lock)
public abstract void startElement(String name) throws IOException
attribute
.
The start-tag will be closed by the first following call to any method
other than attribute
.
public abstract void attribute(String name, String value) throws IOException
attribute
since the last call to startElement
.
public abstract void endElement(String name) throws IOException
public abstract void processingInstruction(String target, String data) throws IOException
data
is non-empty a space will be inserted automatically
to separate it from the target
.
public abstract void markup(String str) throws IOException
All Packages Class Hierarchy This Package Previous Next Index