Uses of Class
org.commonmark.node.SourceSpan
-
Packages that use SourceSpan Package Description org.commonmark.ext.autolink.internal org.commonmark.internal org.commonmark.node AST node types (seeNode
) and visitors (seeAbstractVisitor
)org.commonmark.parser Parsing input text to AST nodes (seeParser
)org.commonmark.parser.block Types for extending block parsing -
-
Uses of SourceSpan in org.commonmark.ext.autolink.internal
Methods in org.commonmark.ext.autolink.internal with parameters of type SourceSpan Modifier and Type Method Description private static Text
AutolinkPostProcessor. createTextNode(java.lang.String literal, org.nibor.autolink.Span span, SourceSpan sourceSpan)
-
Uses of SourceSpan in org.commonmark.internal
Fields in org.commonmark.internal with type parameters of type SourceSpan Modifier and Type Field Description private java.util.List<SourceSpan>
LinkReferenceDefinitionParser. sourceSpans
Methods in org.commonmark.internal that return types with arguments of type SourceSpan Modifier and Type Method Description (package private) java.util.List<SourceSpan>
LinkReferenceDefinitionParser. getParagraphSourceSpans()
Methods in org.commonmark.internal with parameters of type SourceSpan Modifier and Type Method Description void
LinkReferenceDefinitionParser. addSourceSpan(SourceSpan sourceSpan)
void
ParagraphParser. addSourceSpan(SourceSpan sourceSpan)
-
Uses of SourceSpan in org.commonmark.node
Fields in org.commonmark.node with type parameters of type SourceSpan Modifier and Type Field Description private java.util.List<SourceSpan>
Node. sourceSpans
private java.util.List<SourceSpan>
SourceSpans. sourceSpans
Methods in org.commonmark.node that return SourceSpan Modifier and Type Method Description static SourceSpan
SourceSpan. of(int lineIndex, int columnIndex, int length)
Deprecated.Use {of(int, int, int, int)
} instead to also specify input index.static SourceSpan
SourceSpan. of(int line, int col, int input, int length)
SourceSpan
SourceSpan. subSpan(int beginIndex)
SourceSpan
SourceSpan. subSpan(int beginIndex, int endIndex)
Methods in org.commonmark.node that return types with arguments of type SourceSpan Modifier and Type Method Description java.util.List<SourceSpan>
Node. getSourceSpans()
java.util.List<SourceSpan>
SourceSpans. getSourceSpans()
Methods in org.commonmark.node with parameters of type SourceSpan Modifier and Type Method Description void
Node. addSourceSpan(SourceSpan sourceSpan)
Add a source span to the end of the list.Method parameters in org.commonmark.node with type arguments of type SourceSpan Modifier and Type Method Description void
SourceSpans. addAll(java.util.List<SourceSpan> other)
void
Node. setSourceSpans(java.util.List<SourceSpan> sourceSpans)
Replace the current source spans with the provided list. -
Uses of SourceSpan in org.commonmark.parser
Fields in org.commonmark.parser declared as SourceSpan Modifier and Type Field Description private SourceSpan
SourceLine. sourceSpan
Methods in org.commonmark.parser that return SourceSpan Modifier and Type Method Description SourceSpan
SourceLine. getSourceSpan()
Methods in org.commonmark.parser that return types with arguments of type SourceSpan Modifier and Type Method Description java.util.List<SourceSpan>
SourceLines. getSourceSpans()
Methods in org.commonmark.parser with parameters of type SourceSpan Modifier and Type Method Description static SourceLine
SourceLine. of(java.lang.CharSequence content, SourceSpan sourceSpan)
Constructors in org.commonmark.parser with parameters of type SourceSpan Constructor Description SourceLine(java.lang.CharSequence content, SourceSpan sourceSpan)
-
Uses of SourceSpan in org.commonmark.parser.block
Methods in org.commonmark.parser.block with parameters of type SourceSpan Modifier and Type Method Description void
AbstractBlockParser. addSourceSpan(SourceSpan sourceSpan)
void
BlockParser. addSourceSpan(SourceSpan sourceSpan)
Add a source span of the currently parsed block.
-