Package org.commonmark.node
Class ListItem
- java.lang.Object
-
- org.commonmark.node.Node
-
- org.commonmark.node.Block
-
- org.commonmark.node.ListItem
-
public class ListItem extends Block
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Integer
contentIndent
private java.lang.Integer
markerIndent
-
Constructor Summary
Constructors Constructor Description ListItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(Visitor visitor)
java.lang.Integer
getContentIndent()
Returns the indent of the content in columns (spaces or tab stop of 4) if available, or null otherwise.java.lang.Integer
getMarkerIndent()
Returns the indent of the marker such as "-" or "1." in columns (spaces or tab stop of 4) if available, or null otherwise.void
setContentIndent(java.lang.Integer contentIndent)
void
setMarkerIndent(java.lang.Integer markerIndent)
-
Methods inherited from class org.commonmark.node.Node
addSourceSpan, appendChild, getFirstChild, getLastChild, getNext, getPrevious, getSourceSpans, insertAfter, insertBefore, prependChild, setSourceSpans, toString, toStringAttributes, unlink
-
-
-
-
Method Detail
-
getMarkerIndent
public java.lang.Integer getMarkerIndent()
Returns the indent of the marker such as "-" or "1." in columns (spaces or tab stop of 4) if available, or null otherwise.Some examples and their marker indent:
- Foo
Marker indent: 0- Foo
Marker indent: 11. Foo
Marker indent: 2
-
setMarkerIndent
public void setMarkerIndent(java.lang.Integer markerIndent)
-
getContentIndent
public java.lang.Integer getContentIndent()
Returns the indent of the content in columns (spaces or tab stop of 4) if available, or null otherwise. The content indent is counted from the beginning of the line and includes the marker on the first line.Some examples and their content indent:
- Foo
Content indent: 2- Foo
Content indent: 31. Foo
Content indent: 5Note that subsequent lines in the same list item need to be indented by at least the content indent to be counted as part of the list item.
-
setContentIndent
public void setContentIndent(java.lang.Integer contentIndent)
-
-