Package org.apache.fop.fo.flow.table
Interface BorderResolver
-
- All Known Implementing Classes:
CollapsingBorderResolver
,SeparateBorderResolver
interface BorderResolver
A class dedicated to the resolution of borders in tables. It receives a series of events as the table is parsed and performs border resolution accordingly.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
endPart()
Receives notification of the end of a table-header/footer/body.void
endRow(java.util.List<GridUnit> row, TableCellContainer container)
Receives notification of the end of a row.void
endTable()
Receives notification of the end of the table.void
startPart(TablePart part)
Receives notification of the start of a table-header/footer/body.
-
-
-
Method Detail
-
endRow
void endRow(java.util.List<GridUnit> row, TableCellContainer container)
Receives notification of the end of a row.- Parameters:
row
- the row that has just been finishedcontainer
- the FO element holding the given row
-
startPart
void startPart(TablePart part)
Receives notification of the start of a table-header/footer/body.- Parameters:
part
- the part that has started
-
endPart
void endPart()
Receives notification of the end of a table-header/footer/body.
-
endTable
void endTable()
Receives notification of the end of the table.
-
-