com.lowagie.text.rtf.document
public class: RtfGenerator [javadoc |
source]
java.lang.Object
com.lowagie.text.rtf.RtfElement
com.lowagie.text.rtf.document.RtfGenerator
All Implemented Interfaces:
RtfBasicElement
The RtfGenerator creates the (\*\generator ...} element.
- version:
$ - Id: RtfGenerator.java 3440 2008-05-25 18:16:48Z howard_s $
- author:
Howard - Shank (hgshank@yahoo.com)
- since:
2.0.8 -
| Constructor: |
public RtfGenerator(RtfDocument doc) {
super(doc);
}
Constructs a RtfGenerator belonging to a RtfDocument Parameters:
doc - The RtfDocument this RtfGenerator belongs to
|
| Method from com.lowagie.text.rtf.document.RtfGenerator Summary: |
|---|
|
writeContent |
| Method from com.lowagie.text.rtf.document.RtfGenerator Detail: |
public void writeContent(OutputStream result) throws IOException {
result.write(OPEN_GROUP);
result.write(GENERATOR);
result.write(DELIMITER);
result.write(Document.getVersion().getBytes());
result.write(CLOSE_GROUP);
this.document.outputDebugLinebreak(result);
}
Writes the RTF generator group. |