com.lowagie.text.rtf.document.output
public class: RtfMemoryCache [javadoc |
source]
java.lang.Object
com.lowagie.text.rtf.document.output.RtfMemoryCache
All Implemented Interfaces:
RtfDataCache
The RtfMemoryCache is an RtfDataCache that keeps the whole rtf document
data in memory. Fast but memory intensive.
- version:
$ - Id: RtfMemoryCache.java 3373 2008-05-12 16:21:24Z xlv $
- author:
Mark - Hall (Mark.Hall@mail.room3b.eu)
- author:
Thomas - Bickel (tmb99@inode.at)
| Method from com.lowagie.text.rtf.document.output.RtfMemoryCache Detail: |
public OutputStream getOutputStream() {
return this.data;
}
Gets the ByteArrayOutputStream. |
public void writeTo(OutputStream target) throws IOException {
this.data.writeTo(target);
}
Writes the content of the ByteArrayOutputStream into the OutputStream. |