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 TextAutolinkPostProcessor. 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. sourceSpansMethods 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 voidLinkReferenceDefinitionParser. addSourceSpan(SourceSpan sourceSpan)voidParagraphParser. 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. sourceSpansprivate java.util.List<SourceSpan>SourceSpans. sourceSpansMethods in org.commonmark.node that return SourceSpan Modifier and Type Method Description static SourceSpanSourceSpan. of(int lineIndex, int columnIndex, int length)Deprecated.Use {of(int, int, int, int)} instead to also specify input index.static SourceSpanSourceSpan. of(int line, int col, int input, int length)SourceSpanSourceSpan. subSpan(int beginIndex)SourceSpanSourceSpan. 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 voidNode. 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 voidSourceSpans. addAll(java.util.List<SourceSpan> other)voidNode. 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 SourceSpanSourceLine. sourceSpanMethods in org.commonmark.parser that return SourceSpan Modifier and Type Method Description SourceSpanSourceLine. 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 SourceLineSourceLine. 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 voidAbstractBlockParser. addSourceSpan(SourceSpan sourceSpan)voidBlockParser. addSourceSpan(SourceSpan sourceSpan)Add a source span of the currently parsed block.
-