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
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
Fields inherited from class java.io.FilterWriter |
out |
Fields inherited from class java.io.Writer |
lock |
Constructor Summary |
XMLWriter(java.io.Writer out)
Construct an XMLWriter that will write to the given stream. |
Method Summary |
void |
write(char[] cbuf,
int off,
int len)
|
void |
write(int c)
|
void |
write(java.lang.String str,
int off,
int len)
|
Methods inherited from class java.io.FilterWriter |
close, flush |
Methods inherited from class java.io.Writer |
append, append, append, write, write |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
XMLWriter
public XMLWriter(java.io.Writer out)
- Construct an XMLWriter that will write to the given stream.
write
public void write(char[] cbuf,
int off,
int len)
throws java.io.IOException
- Overrides:
write
in class java.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 class java.io.FilterWriter
- Throws:
java.io.IOException
write
public void write(int c)
throws java.io.IOException
- Overrides:
write
in class java.io.FilterWriter
- Throws:
java.io.IOException
Copyright © 2006 Apache Software Foundation. All Rights Reserved.