Interface ImportElementInfo
public interface ImportElementInfo
Container of information on an element being imported.
- Since:
- 5.1.42
-
Method Summary
Modifier and TypeMethodDescription@NotNull List<ImportElementInfo>
Provides the information containers for the element's children.long
getId()
Provides the id of the element.getName()
Provides the name of the element.@Nullable ImportElementInfo
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
Provides an information container on this element's parent.- Returns:
- The parent.
- Since:
- 5.1.42
-
getChildren
Provides the information containers for the element's children.- Returns:
- A list of children.
- Since:
- 5.1.42
-