com.vladsch.flexmark.util.format.TableCaptionSection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-util-format Show documentation
Show all versions of flexmark-util-format Show documentation
flexmark-java format utility classes
The newest version!
package com.vladsch.flexmark.util.format;
import com.vladsch.flexmark.util.sequence.BasedSequence;
public class TableCaptionSection extends TableSection {
public static final TableCell NULL_CELL =
new TableCell(null, BasedSequence.NULL, BasedSequence.NULL, BasedSequence.NULL, 1, 0);
public static final TableCell DEFAULT_CELL = new TableCell(null, "[", "", "]", 1, 1);
public TableCaptionSection(TableSectionType sectionType) {
super(sectionType);
}
@Override
public TableRow defaultRow() {
return new TableCaptionRow();
}
@Override
public TableCell defaultCell() {
return DEFAULT_CELL;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy