All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladsch.flexmark.util.format.TableCaptionSection Maven / Gradle / Ivy

There is a newer version: 4.15.102
Show newest version
package com.vladsch.flexmark.util.format;

import com.vladsch.flexmark.util.sequence.BasedSequence;

public class TableCaptionSection extends TableSection {
    final public static TableCell NULL_CELL = new TableCell(null, BasedSequence.NULL, BasedSequence.NULL, BasedSequence.NULL, 1, 0);
    final public static 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 - 2025 Weber Informatics LLC | Privacy Policy