| com.lowagie.text.rtf.AbstractRtfField com.lowagie.text.rtf.GenericRtfField
All known Subclasses: com.lowagie.text.rtf.RtfPageNumber,
GenericRtfField | public class GenericRtfField extends AbstractRtfField (Code) | | This class implements a generic RtfField.
This class is based on the RtfWriter-package from Mark Hall.
ONLY FOR USE WITH THE RtfWriter NOT with the RtfWriter2.
author: Dirk Weigenand (Dirk.Weigenand@smb-tec.com) version: $Id: GenericRtfField.java 2655 2007-03-15 19:26:36Z xlv $ since: Mon Aug 19 14:50:39 2002 |
Constructor Summary | |
public | GenericRtfField(String fieldInst, String fieldResult) public constructor, set the data that is to be written into the
Field Initialization Stuff and Field Result parts of the
RtfField. | public | GenericRtfField(String fieldInst, String fieldResult, Font font) public constructor, set the data that is to be written into the
Field Initialization Stuff and Field Result parts of the
RtfField. |
fieldInst | protected String fieldInst(Code) | | Field Initialization Stuff.
|
fieldResult | protected String fieldResult(Code) | | Field Result Stuff.
|
GenericRtfField | public GenericRtfField(String fieldInst, String fieldResult)(Code) | | public constructor, set the data that is to be written into the
Field Initialization Stuff and Field Result parts of the
RtfField.
Parameters: fieldInst - data to be written into the FieldInitialization Stuff part of the RtfField. Parameters: fieldResult - data to be written into the Field Resultpart of the RtfField. |
GenericRtfField | public GenericRtfField(String fieldInst, String fieldResult, Font font)(Code) | | public constructor, set the data that is to be written into the
Field Initialization Stuff and Field Result parts of the
RtfField.
Parameters: fieldInst - data to be written into the FieldInitialization Stuff part of the RtfField. Parameters: fieldResult - data to be written into the Field Resultpart of the RtfField. Parameters: font - |
writeRtfFieldInitializationStuff | public void writeRtfFieldInitializationStuff(OutputStream out) throws IOException(Code) | | method for writing custom stuff to the Field Initialization
Stuff part of an RtfField.
Parameters: out - throws: IOException - |
writeRtfFieldResultStuff | public void writeRtfFieldResultStuff(OutputStream out) throws IOException(Code) | | method for writing custom stuff to the Field Result part of an
RtfField.
Parameters: out - throws: IOException - |
|
|