All Packages Class Hierarchy This Package Previous Next Index
Class com.jclark.xml.output.SyncXMLWriter
java.lang.Object
|
+----java.io.Writer
|
+----com.jclark.xml.output.XMLWriter
|
+----com.jclark.xml.output.SyncXMLWriter
- public class SyncXMLWriter
- extends XMLWriter
-
SyncXMLWriter(XMLWriter)
-
-
attribute(String, String)
- Write an attribute.
-
close()
-
-
endElement(String)
- End an element.
-
flush()
-
-
markup(String)
- Write markup.
-
processingInstruction(String, String)
- Write a processing instruction.
-
startElement(String)
- Start an element.
-
write(char[], int, int)
-
-
write(int)
-
-
write(String)
-
-
write(String, int, int)
-
SyncXMLWriter
public SyncXMLWriter(XMLWriter w)
write
public void write(char cbuf[],
int off,
int len) throws IOException
- Overrides:
- write in class Writer
write
public void write(String str) throws IOException
- Overrides:
- write in class Writer
write
public void write(int c) throws IOException
- Overrides:
- write in class Writer
write
public void write(String str,
int off,
int len) throws IOException
- Overrides:
- write in class Writer
close
public void close() throws IOException
- Overrides:
- close in class Writer
flush
public void flush() throws IOException
- Overrides:
- flush in class Writer
startElement
public void startElement(String name) throws IOException
- Start an element.
- Overrides:
- startElement in class XMLWriter
attribute
public void attribute(String name,
String value) throws IOException
- Write an attribute.
- Overrides:
- attribute in class XMLWriter
endElement
public void endElement(String name) throws IOException
- End an element.
- Overrides:
- endElement in class XMLWriter
processingInstruction
public void processingInstruction(String target,
String data) throws IOException
- Write a processing instruction.
- Overrides:
- processingInstruction in class XMLWriter
markup
public void markup(String str) throws IOException
- Write markup.
- Overrides:
- markup in class XMLWriter
All Packages Class Hierarchy This Package Previous Next Index