Interface ImportElementInfo


public interface ImportElementInfo
Container of information on an element being imported.
Since:
5.1.42
  • Method Summary

    Modifier and Type
    Method
    Description
    Provides the information containers for the element's children.
    long
    Provides the id of the element.
    Provides the name of the element.
    Provides an information container on this element's parent.
  • Method Details

    • getId

      long getId()
      Provides the id of the element.
      Returns:
      The element's id or -1L.
      Since:
      5.1.42
    • getName

      String getName()
      Provides the name of the element.
      Returns:
      The element's name.
      Since:
      5.1.42
    • getParent

      @Nullable @Nullable ImportElementInfo getParent()
      Provides an information container on this element's parent.
      Returns:
      The parent.
      Since:
      5.1.42
    • getChildren

      @NotNull @NotNull List<ImportElementInfo> getChildren()
      Provides the information containers for the element's children.
      Returns:
      A list of children.
      Since:
      5.1.42