groovy.xml.streamingmarkupsupport
Class StreamingMarkupWriter

java.lang.Object
  extended by java.io.Writer
      extended by groovy.xml.streamingmarkupsupport.StreamingMarkupWriter
All Implemented Interfaces:
Closeable, Flushable, Appendable

public class StreamingMarkupWriter
extends Writer


Field Summary
protected  CharsetEncoder encoder
           
protected  String encoding
           
protected  Writer writer
           
 
Fields inherited from class java.io.Writer
lock
 
Constructor Summary
StreamingMarkupWriter(Writer writer)
           
StreamingMarkupWriter(Writer writer, String encoding)
           
 
Method Summary
 Writer attributeValue()
           
 Writer bodyText()
           
 void close()
           
 void flush()
           
 String getEncoding()
           
 Writer unescaped()
           
 void write(char[] cbuf, int off, int len)
           
 void write(int c)
           
 
Methods inherited from class java.io.Writer
append, append, append, append, append, append, write, write, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

writer

protected final Writer writer

encoding

protected final String encoding

encoder

protected final CharsetEncoder encoder
Constructor Detail

StreamingMarkupWriter

public StreamingMarkupWriter(Writer writer,
                             String encoding)

StreamingMarkupWriter

public StreamingMarkupWriter(Writer writer)
Method Detail

close

public void close()
           throws IOException
Specified by:
close in interface Closeable
Specified by:
close in class Writer
Throws:
IOException

flush

public void flush()
           throws IOException
Specified by:
flush in interface Flushable
Specified by:
flush in class Writer
Throws:
IOException

write

public void write(int c)
           throws IOException
Overrides:
write in class Writer
Throws:
IOException

write

public void write(char[] cbuf,
                  int off,
                  int len)
           throws IOException
Specified by:
write in class Writer
Throws:
IOException

attributeValue

public Writer attributeValue()

bodyText

public Writer bodyText()

unescaped

public Writer unescaped()

getEncoding

public String getEncoding()


Copyright © 2003-2010 The Codehaus. All Rights Reserved.