com.vladsch.flexmark.ast.BulletList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark Show documentation
Show all versions of flexmark Show documentation
Core of flexmark-java (implementation of CommonMark for parsing markdown and rendering to HTML)
package com.vladsch.flexmark.ast;
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 BulletList extends ListBlock {
private char openingMarker;
@NotNull
@Override
public BasedSequence[] getSegments() {
return EMPTY_SEGMENTS;
}
public BulletList() {
}
public BulletList(BasedSequence chars) {
super(chars);
}
public BulletList(BasedSequence chars, List segments) {
super(chars, segments);
}
public BulletList(BlockContent blockContent) {
super(blockContent);
}
public char getOpeningMarker() {
return openingMarker;
}
public void setOpeningMarker(char openingMarker) {
this.openingMarker = openingMarker;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy