Interface ListDomNode

All Superinterfaces:
DomNode

public interface ListDomNode extends DomNode
A dom node representing a list.
Since:
4.2.17
  • Method Details

    • getStyle

      @NotNull @NotNull ListDomNode.Style getStyle()
      Returns the list style of this list dom node.
      Since:
      4.2.17
    • setStyle

      void setStyle(@NotNull @NotNull ListDomNode.Style style)
      Provide the list style of this list dom node.
      Since:
      4.2.17
    • getPre

      @Nullable @Nullable String getPre()
      Returns the string that is used as bullet if style style is set to USER_DEFINED.
      Since:
      4.2.17
    • setPre

      void setPre(@Nullable @Nullable String pre)
      Provide the string that should be used as bullet if style style is set to USER_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

      @Nullable @Nullable Media getMedia()
      Returns the Media that is used as bullet icon.
      Since:
      4.2.17
    • setMedia

      void setMedia(@Nullable @Nullable Media media)
      Provide the Media that should be used as bullet icon.
      Since:
      4.2.17
    • appendChild

      DefaultDomNode appendChild()
      Appends a list item.
      Since:
      4.2.17