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

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

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