Package com.lowagie.text.rtf.table
Class RtfRow
- java.lang.Object
-
- com.lowagie.text.rtf.RtfElement
-
- com.lowagie.text.rtf.table.RtfRow
-
- All Implemented Interfaces:
RtfBasicElement,com.lowagie.text.RtfElementInterface
public class RtfRow extends RtfElement
The RtfRow wraps one Row for a RtfTable. INTERNAL USE ONLY- Version:
- $Id: RtfRow.java 3735 2009-02-26 01:44:03Z xlv $
- Author:
- Mark Hall (Mark.Hall@mail.room3b.eu), Steffen Stundzig, Lorenz Maierhofer, Thomas Bickel (tmb99@inode.at)
-
-
Field Summary
-
Fields inherited from class com.lowagie.text.rtf.RtfElement
document, inHeader, inTable
-
Fields inherited from interface com.lowagie.text.rtf.RtfBasicElement
CLOSE_GROUP, COMMA_DELIMITER, DELIMITER, OPEN_GROUP, TWIPS_FACTOR
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedRtfRow(RtfDocument doc, RtfTable rtfTable, com.lowagie.text.pdf.PdfPRow row, int rowNumber)Constructs a RtfRow for a Row.protectedRtfRow(RtfDocument doc, RtfTable rtfTable, com.lowagie.text.Row row, int rowNumber)Constructs a RtfRow for a Row.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidcleanRow()Cleans the deleted RtfCells from the total RtfCells.protected java.util.ArrayList<RtfCell>getCells()Gets the cells of this RtfRowprotected RtfTablegetParentTable()Gets the parent RtfTable of this RtfRowprotected voidhandleCellSpanning()Performs a second pass over all cells to handle cell row/column spanning.voidwriteContent(java.io.OutputStream result)Writes the content of this RtfRow-
Methods inherited from class com.lowagie.text.rtf.RtfElement
intToByteArray, isInTable, setInHeader, setInTable, setRtfDocument
-
-
-
-
Constructor Detail
-
RtfRow
protected RtfRow(RtfDocument doc, RtfTable rtfTable, com.lowagie.text.Row row, int rowNumber)
Constructs a RtfRow for a Row.- Parameters:
doc- The RtfDocument this RtfRow belongs tortfTable- The RtfTable this RtfRow belongs torow- The Row this RtfRow is based onrowNumber- The number of this row
-
RtfRow
protected RtfRow(RtfDocument doc, RtfTable rtfTable, com.lowagie.text.pdf.PdfPRow row, int rowNumber)
Constructs a RtfRow for a Row.- Parameters:
doc- The RtfDocument this RtfRow belongs tortfTable- The RtfTable this RtfRow belongs torow- The Row this RtfRow is based onrowNumber- The number of this row- Since:
- 2.1.3
-
-
Method Detail
-
handleCellSpanning
protected void handleCellSpanning()
Performs a second pass over all cells to handle cell row/column spanning.
-
cleanRow
protected void cleanRow()
Cleans the deleted RtfCells from the total RtfCells.
-
writeContent
public void writeContent(java.io.OutputStream result) throws java.io.IOExceptionWrites the content of this RtfRow- Specified by:
writeContentin interfaceRtfBasicElement- Specified by:
writeContentin classRtfElement- Parameters:
result- TheOutputStreamto write the content to- Throws:
java.io.IOException
-
getParentTable
protected RtfTable getParentTable()
Gets the parent RtfTable of this RtfRow- Returns:
- The parent RtfTable of this RtfRow
-
getCells
protected java.util.ArrayList<RtfCell> getCells()
Gets the cells of this RtfRow- Returns:
- The cells of this RtfRow
-
-