Package com.vladsch.flexmark.util.format
Class TableSection
- java.lang.Object
-
- com.vladsch.flexmark.util.format.TableSection
-
- Direct Known Subclasses:
TableCaptionSection,TableSeparatorSection
public class TableSection extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected intcolumnprotected introwArrayList<TableRow>rowsTableSectionTypesectionType
-
Constructor Summary
Constructors Constructor Description TableSection(TableSectionType sectionType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TableCelldefaultCell()TableRowdefaultRow()TableRowexpandTo(int row)TableRowexpandTo(int row, int column)TableRowexpandTo(int row, int column, TableCell cell)TableRowexpandTo(int row, TableCell cell)TableRowget(int row)intgetColumn()intgetMaxColumns()intgetMinColumns()intgetRow()ArrayList<TableRow>getRows()voidnextRow()voidnormalize()voidsetCell(int row, int column, TableCell cell)StringtoString()
-
-
-
Field Detail
-
sectionType
public final TableSectionType sectionType
-
row
protected int row
-
column
protected int column
-
-
Constructor Detail
-
TableSection
public TableSection(TableSectionType sectionType)
-
-
Method Detail
-
getRow
public int getRow()
-
getColumn
public int getColumn()
-
nextRow
public void nextRow()
-
setCell
public void setCell(int row, int column, TableCell cell)
-
normalize
public void normalize()
-
expandTo
public TableRow expandTo(int row)
-
expandTo
public TableRow expandTo(int row, int column)
-
defaultRow
public TableRow defaultRow()
-
defaultCell
public TableCell defaultCell()
-
get
public TableRow get(int row)
-
getMaxColumns
public int getMaxColumns()
-
getMinColumns
public int getMinColumns()
-
-