Search in sources :

Example 1 with RtfFontList

use of com.lowagie.text.rtf.style.RtfFontList in project itext2 by albfernandez.

the class RtfDocumentHeader method init.

/**
 * initializes the RtfDocumentHeader.
 */
protected void init() {
    this.codePage = new RtfCodePage(this.document);
    this.colorList = new RtfColorList(this.document);
    this.fontList = new RtfFontList(this.document);
    this.listTable = new RtfListTable(this.document);
    this.stylesheetList = new RtfStylesheetList(this.document);
    this.infoGroup = new RtfInfoGroup(this.document);
    this.protectionSetting = new RtfProtectionSetting(this.document);
    this.pageSetting = new RtfPageSetting(this.document);
    this.header = new RtfHeaderFooterGroup(this.document, RtfHeaderFooter.TYPE_HEADER);
    this.footer = new RtfHeaderFooterGroup(this.document, RtfHeaderFooter.TYPE_FOOTER);
    this.generator = new RtfGenerator(this.document);
}
Also used : RtfColorList(com.lowagie.text.rtf.style.RtfColorList) RtfHeaderFooterGroup(com.lowagie.text.rtf.headerfooter.RtfHeaderFooterGroup) RtfFontList(com.lowagie.text.rtf.style.RtfFontList) RtfListTable(com.lowagie.text.rtf.list.RtfListTable) RtfStylesheetList(com.lowagie.text.rtf.style.RtfStylesheetList)

Aggregations

RtfHeaderFooterGroup (com.lowagie.text.rtf.headerfooter.RtfHeaderFooterGroup)1 RtfListTable (com.lowagie.text.rtf.list.RtfListTable)1 RtfColorList (com.lowagie.text.rtf.style.RtfColorList)1 RtfFontList (com.lowagie.text.rtf.style.RtfFontList)1 RtfStylesheetList (com.lowagie.text.rtf.style.RtfStylesheetList)1