Interface ImportElementInfo
public interface ImportElementInfo
Container of information on an element being imported.
- Since:
- 5.1.42
- 
Method SummaryModifier and TypeMethodDescription@NotNull List<ImportElementInfo>Provides the information containers for the element's children.longgetId()Provides the id of the element.getName()Provides the name of the element.@Nullable ImportElementInfoProvides an information container on this element's parent.
- 
Method Details- 
getIdlong getId()Provides the id of the element.- Returns:
- The element's id or -1L.
- Since:
- 5.1.42
 
- 
getNameString getName()Provides the name of the element.- Returns:
- The element's name.
- Since:
- 5.1.42
 
- 
getParentProvides an information container on this element's parent.- Returns:
- The parent.
- Since:
- 5.1.42
 
- 
getChildrenProvides the information containers for the element's children.- Returns:
- A list of children.
- Since:
- 5.1.42
 
 
-