Package org.apache.fop.fo.flow.table
Class SeparateBorderResolver
- java.lang.Object
-
- org.apache.fop.fo.flow.table.SeparateBorderResolver
-
- All Implemented Interfaces:
BorderResolver
class SeparateBorderResolver extends java.lang.Object implements BorderResolver
A resolver for the separate-border model. Basically this class does nothing.
-
-
Constructor Summary
Constructors Constructor Description SeparateBorderResolver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
endPart()
Receives notification of the end of a table-header/footer/body.void
endRow(java.util.List 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
public void endRow(java.util.List row, TableCellContainer container)
Receives notification of the end of a row.- Specified by:
endRow
in interfaceBorderResolver
- Parameters:
row
- the row that has just been finishedcontainer
- the FO element holding the given row
-
startPart
public void startPart(TablePart part)
Receives notification of the start of a table-header/footer/body.- Specified by:
startPart
in interfaceBorderResolver
- Parameters:
part
- the part that has started
-
endPart
public void endPart()
Receives notification of the end of a table-header/footer/body.- Specified by:
endPart
in interfaceBorderResolver
-
endTable
public void endTable()
Receives notification of the end of the table.- Specified by:
endTable
in interfaceBorderResolver
-
-