Package org.apache.openjpa.lib.xml
Class XMLWriter
- java.lang.Object
-
- java.io.Writer
-
- java.io.FilterWriter
-
- org.apache.openjpa.lib.xml.XMLWriter
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.Appendable
,java.lang.AutoCloseable
public class XMLWriter extends java.io.FilterWriter
The XMLWriter is a writer type for pretty-printing XML. It assumes that the streamed XML will be given without any whitespace, other than the space within text blocks.- Author:
- Abe White
-
-
Constructor Summary
Constructors Constructor Description XMLWriter(java.io.Writer out)
Construct an XMLWriter that will write to the given stream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
write(char[] cbuf, int off, int len)
void
write(int c)
void
write(java.lang.String str, int off, int len)
-
-
-
Method Detail
-
write
public void write(char[] cbuf, int off, int len) throws java.io.IOException
- Overrides:
write
in classjava.io.FilterWriter
- Throws:
java.io.IOException
-
write
public void write(java.lang.String str, int off, int len) throws java.io.IOException
- Overrides:
write
in classjava.io.FilterWriter
- Throws:
java.io.IOException
-
write
public void write(int c) throws java.io.IOException
- Overrides:
write
in classjava.io.FilterWriter
- Throws:
java.io.IOException
-
-