| java.lang.Object com.lowagie.text.rtf.RtfElement
All known Subclasses: com.lowagie.text.rtf.document.RtfDocument, com.lowagie.text.rtf.text.RtfChunk, com.lowagie.text.rtf.document.RtfPageSetting, com.lowagie.text.rtf.table.RtfBorderGroup, com.lowagie.text.rtf.document.RtfInfoElement, com.lowagie.text.rtf.table.RtfRow, com.lowagie.text.rtf.text.RtfSection, com.lowagie.text.rtf.table.RtfTable, com.lowagie.text.rtf.table.RtfBorder, com.lowagie.text.rtf.graphic.RtfImage, com.lowagie.text.rtf.style.RtfColorList, com.lowagie.text.rtf.document.RtfInfoGroup, com.lowagie.text.rtf.style.RtfFontList, com.lowagie.text.rtf.style.RtfStylesheetList, com.lowagie.text.rtf.list.RtfList, com.lowagie.text.rtf.text.RtfAnnotation, com.lowagie.text.rtf.style.RtfColor, com.lowagie.text.rtf.list.RtfListTable, com.lowagie.text.rtf.text.RtfPhrase, com.lowagie.text.rtf.text.RtfNewPage, com.lowagie.text.rtf.document.RtfDocumentHeader, com.lowagie.text.rtf.document.RtfCodePage,
RtfElement | abstract public class RtfElement implements RtfBasicElement(Code) | | RtfElement is the base class for all RTF Element classes
version: $Id: RtfElement.java 2808 2007-05-30 10:58:16Z psoares33 $ author: Mark Hall (mhall@edu.uni-klu.ac.at) author: Thomas Bickel (tmb99@inode.at) |
Constructor Summary | |
public | RtfElement(RtfDocument doc) Constructs a RtfElement belonging to the specified RtfDocument. |
document | protected RtfDocument document(Code) | | The RtfDocument this RtfElement belongs to
|
inHeader | protected boolean inHeader(Code) | | Whether this RtfElement is in a header
|
inTable | protected boolean inTable(Code) | | Whether this RtfElement is in a table
|
RtfElement | public RtfElement(RtfDocument doc)(Code) | | Constructs a RtfElement belonging to the specified RtfDocument.
Parameters: doc - The RtfDocument this RtfElement belongs to |
intToByteArray | public byte[] intToByteArray(int i)(Code) | | Transforms an integer into its String representation and then returns the bytes
of that string.
Parameters: i - The integer to convert A byte array representing the integer |
isInTable | public boolean isInTable()(Code) | | Gets whether this RtfElement is in a table
Whether this RtfElement is in a table |
setInHeader | public void setInHeader(boolean inHeader)(Code) | | Sets whether this RtfElement is in a header
Parameters: inHeader - True if this RtfElement is in a header, false otherwise |
setInTable | public void setInTable(boolean inTable)(Code) | | Sets whether this RtfElement is in a table
Parameters: inTable - True if this RtfElement is in a table, false otherwise |
setRtfDocument | public void setRtfDocument(RtfDocument doc)(Code) | | Sets the RtfDocument this RtfElement belongs to
Parameters: doc - The RtfDocument to use |
|
|