com.vladsch.flexmark.ast.CodeBlock 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.ast;
import com.vladsch.flexmark.util.ast.Block;
import com.vladsch.flexmark.util.ast.BlockContent;
import com.vladsch.flexmark.util.sequence.BasedSequence;
import org.jetbrains.annotations.NotNull;
import java.util.List;
public class CodeBlock extends Block {
@NotNull
@Override
public BasedSequence[] getSegments() {
return EMPTY_SEGMENTS;
}
public CodeBlock() {
}
public CodeBlock(BasedSequence chars) {
super(chars);
}
public CodeBlock(BasedSequence chars, List segments) {
super(chars, segments);
}
public CodeBlock(BlockContent blockContent) {
super(blockContent);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy