org.apache.xmlbeans.impl.util
static class: FilerImpl.RepackagingWriter [javadoc |
source]
java.lang.Object
java.io.Writer
java.io.StringWriter
org.apache.xmlbeans.impl.util.FilerImpl$RepackagingWriter
All Implemented Interfaces:
Closeable, Flushable, Appendable
Method from org.apache.xmlbeans.impl.util.FilerImpl$RepackagingWriter Summary: |
---|
close |
Methods from java.io.StringWriter: |
---|
append, append, append, append, append, append, append, append, append, close, flush, getBuffer, toString, write, write, write, write |
Methods from java.io.Writer: |
---|
append, append, append, append, append, append, close, flush, write, write, write, write, write |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.xmlbeans.impl.util.FilerImpl$RepackagingWriter Detail: |
public void close() throws IOException {
super.close();
Writer fw = writerForFile( _file );
try
{ fw.write( _repackager.repackage( getBuffer() ).toString() ); }
finally
{ fw.close(); }
}
|