Package com.scroogexhtml.converter
Interface TableStateWriter
- All Known Subinterfaces:
Writer
- All Known Implementing Classes:
AbstractWriter
,XMLDOMWriter
public interface TableStateWriter
The TableWriter interface provides methods for writing tables.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Ends the current cell in a nested table.void
Ends a nested table row.void
setItap
(byte paramValue) Sets the value of the "Itap" property.void
Ends the current cell in a table.
-
Method Details
-
tableCellEnds
void tableCellEnds()Ends the current cell in a table.This method is used to mark the end of the current cell when writing tables.
-
setItap
void setItap(byte paramValue) Sets the value of the "Itap" property.- Parameters:
paramValue
- The value to be set.
-
nestedTableRowEnds
void nestedTableRowEnds()Ends a nested table row.This method is used to mark the end of a nested table row when writing tables.
- See Also:
-
nestedTableCellEnds
void nestedTableCellEnds()Ends the current cell in a nested table.
-