Interface ListDomNode
- All Superinterfaces:
DomNode
A dom node representing a list.
- Since:
- 4.2.17
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic enum
Represents the list style type. -
Method Summary
Modifier and TypeMethodDescriptionAppends a list item.@Nullable Media
getMedia()
Returns theMedia
that is used as bullet icon.@Nullable String
getPre()
Returns the string that is used as bullet if style style is set toUSER_DEFINED
.int
getStart()
Returns the starting point of numbering.@NotNull ListDomNode.Style
getStyle()
Returns the list style of this list dom node.void
Provide theMedia
that should be used as bullet icon.void
Provide the string that should be used as bullet if style style is set toUSER_DEFINED
.void
setStart
(int start) Provide the starting point of numbering.void
setStyle
(@NotNull ListDomNode.Style style) Provide the list style of this list dom node.Methods inherited from interface de.espirit.firstspirit.access.editor.value.DomNode
getChildren, getChildren, getFirstChild, getFormatTemplate, getNextSibling, getNodeType, getParent, getReferences, getTagName, hasChildren, isSystemTemplate, removeChild, replaceChild
-
Method Details
-
getStyle
Returns the list style of this list dom node.- Since:
- 4.2.17
-
setStyle
Provide the list style of this list dom node.- Since:
- 4.2.17
-
getPre
Returns the string that is used as bullet if style style is set toUSER_DEFINED
.- Since:
- 4.2.17
-
setPre
Provide the string that should be used as bullet if style style is set toUSER_DEFINED
.- Since:
- 4.2.17
-
getStart
int getStart()Returns the starting point of numbering.- Since:
- 4.2.17
-
setStart
void setStart(int start) Provide the starting point of numbering.- Since:
- 4.2.17
-
getMedia
Returns theMedia
that is used as bullet icon.- Since:
- 4.2.17
-
setMedia
Provide theMedia
that should be used as bullet icon.- Since:
- 4.2.17
-
appendChild
DefaultDomNode appendChild()Appends a list item.- Since:
- 4.2.17
-