com.vladsch.flexmark.ext.tables.TableBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver-cql-shaded Show documentation
Show all versions of driver-cql-shaded Show documentation
A Shaded CQL ActivityType driver for http://nosqlbench.io/
package com.vladsch.flexmark.ext.tables;
import com.vladsch.flexmark.util.ast.Node;
import com.vladsch.flexmark.util.sequence.BasedSequence;
import org.jetbrains.annotations.NotNull;
/**
* Body part of a {@link TableBlock} containing {@link TableRow TableRows}.
*/
public class TableBody extends Node {
@NotNull
@Override
public BasedSequence[] getSegments() {
return EMPTY_SEGMENTS;
}
public TableBody() {
}
public TableBody(BasedSequence chars) {
super(chars);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy