Package com.vladsch.flexmark.ext.gitlab
Class GitLabBlockQuote
- java.lang.Object
-
- com.vladsch.flexmark.util.ast.Node
-
- com.vladsch.flexmark.util.ast.ContentNode
-
- com.vladsch.flexmark.util.ast.Block
-
- com.vladsch.flexmark.ext.gitlab.GitLabBlockQuote
-
- All Implemented Interfaces:
ParagraphContainer,Content
public class GitLabBlockQuote extends Block implements ParagraphContainer
A GitLab block node
-
-
Field Summary
Fields Modifier and Type Field Description private BasedSequenceclosingMarkerprivate BasedSequenceclosingTrailingprivate BasedSequenceopeningMarkerprivate BasedSequenceopeningTrailing-
Fields inherited from class com.vladsch.flexmark.util.ast.ContentNode
lineSegments
-
Fields inherited from class com.vladsch.flexmark.util.ast.Node
AST_ADAPTER, EMPTY_SEGMENTS, SPLICE
-
-
Constructor Summary
Constructors Constructor Description GitLabBlockQuote()GitLabBlockQuote(BlockContent blockContent)GitLabBlockQuote(BasedSequence chars)GitLabBlockQuote(BasedSequence chars, java.util.List<BasedSequence> segments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidgetAstExtra(@NotNull java.lang.StringBuilder out)BasedSequencegetClosingMarker()BasedSequencegetClosingTrailing()BasedSequencegetOpeningMarker()BasedSequencegetOpeningTrailing()@NotNull BasedSequence[]getSegments()booleanisParagraphEndWrappingDisabled(Paragraph node)booleanisParagraphStartWrappingDisabled(Paragraph node)voidsetClosingMarker(BasedSequence closingMarker)voidsetClosingTrailing(BasedSequence closingTrailing)voidsetOpeningMarker(BasedSequence openingMarker)voidsetOpeningTrailing(BasedSequence openingTrailing)-
Methods inherited from class com.vladsch.flexmark.util.ast.ContentNode
getContentChars, getContentChars, getContentLines, getContentLines, getLineChars, getLineCount, getSpanningChars, setContent, setContent, setContent, setContentLine, setContentLines
-
Methods inherited from class com.vladsch.flexmark.util.ast.Node
appendChain, appendChild, astChars, astExtraChars, astString, baseSubSequence, baseSubSequence, countAncestorsOfType, countDirectAncestorsOfType, delimitedSegmentSpan, delimitedSegmentSpanChars, endOfLine, extractChainTo, extractToFirstInChain, getAncestorOfType, getBaseSequence, getBlankLineSibling, getChars, getCharsFromSegments, getChildChars, getChildIterator, getChildOfType, getChildren, getDescendants, getDocument, getEmptyPrefix, getEmptySuffix, getEndLineNumber, getEndOffset, getEndOfLine, getExactChildChars, getFirstChild, getFirstChildAny, getFirstChildAnyNot, getFirstInChain, getGrandParent, getLastBlankLineChild, getLastChild, getLastChildAny, getLastChildAnyNot, getLastInChain, getLeadSegment, getLineColumnAtEnd, getLineNumber, getNext, getNextAny, getNextAnyNot, getNodeName, getNodeOfTypeIndex, getNodeOfTypeIndex, getOldestAncestorOfTypeAfter, getPrevious, getPreviousAny, getPreviousAnyNot, getReversedChildIterator, getReversedChildren, getReversedDescendants, getSegmentsForChars, getSourceRange, getStartLineNumber, getStartOffset, getStartOfLine, getTextLength, getTrailSegment, hasChildren, hasOrMoreChildren, insertAfter, insertBefore, insertChainAfter, insertChainBefore, isOrDescendantOfType, lineColumnAtIndex, lineColumnAtStart, moveTrailingBlankLines, prependChild, removeChildren, segmentSpan, segmentSpan, segmentSpanChars, segmentSpanChars, segmentSpanChars, segmentSpanCharsToVisible, setChars, setCharsFromContent, setCharsFromContentOnly, setCharsFromSegments, spanningChars, startOfLine, takeChildren, toAstString, toSegmentSpan, toString, toStringAttributes, unlink
-
-
-
-
Field Detail
-
openingMarker
private BasedSequence openingMarker
-
openingTrailing
private BasedSequence openingTrailing
-
closingMarker
private BasedSequence closingMarker
-
closingTrailing
private BasedSequence closingTrailing
-
-
Constructor Detail
-
GitLabBlockQuote
public GitLabBlockQuote()
-
GitLabBlockQuote
public GitLabBlockQuote(BasedSequence chars)
-
GitLabBlockQuote
public GitLabBlockQuote(BasedSequence chars, java.util.List<BasedSequence> segments)
-
GitLabBlockQuote
public GitLabBlockQuote(BlockContent blockContent)
-
-
Method Detail
-
getAstExtra
public void getAstExtra(@NotNull @NotNull java.lang.StringBuilder out)- Overrides:
getAstExtrain classNode
-
getSegments
@NotNull public @NotNull BasedSequence[] getSegments()
- Specified by:
getSegmentsin classNode
-
isParagraphEndWrappingDisabled
public boolean isParagraphEndWrappingDisabled(Paragraph node)
- Specified by:
isParagraphEndWrappingDisabledin interfaceParagraphContainer
-
isParagraphStartWrappingDisabled
public boolean isParagraphStartWrappingDisabled(Paragraph node)
- Specified by:
isParagraphStartWrappingDisabledin interfaceParagraphContainer
-
getOpeningMarker
public BasedSequence getOpeningMarker()
-
setOpeningMarker
public void setOpeningMarker(BasedSequence openingMarker)
-
getClosingMarker
public BasedSequence getClosingMarker()
-
setClosingMarker
public void setClosingMarker(BasedSequence closingMarker)
-
getOpeningTrailing
public BasedSequence getOpeningTrailing()
-
setOpeningTrailing
public void setOpeningTrailing(BasedSequence openingTrailing)
-
getClosingTrailing
public BasedSequence getClosingTrailing()
-
setClosingTrailing
public void setClosingTrailing(BasedSequence closingTrailing)
-
-