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
Modifier and TypeMethodDescriptionvoidendPart()Receives notification of the end of a table-header/footer/body.voidendRow(List<GridUnit> row, TableCellContainer container) Receives notification of the end of a row.voidendTable()Receives notification of the end of the table.voidReceives notification of the start of a table-header/footer/body.
-
Method Details
-
endRow
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
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.
-