Interface ChildInfo

All Known Implementing Classes:
ChildInfoImpl

public interface ChildInfo
ChildInfo...
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the index of the child Node.
    Returns the name of the child Node.
    Returns the uniqueID of the child Node or null if the Node is not identified by a uniqueID.
  • Method Details

    • getName

      Name getName()
      Returns the name of the child Node.
      Returns:
      The name of the child Node.
    • getUniqueID

      String getUniqueID()
      Returns the uniqueID of the child Node or null if the Node is not identified by a uniqueID.
      Returns:
      The uniqueID of the child Node or null.
      See Also:
    • getIndex

      int getIndex()
      Returns the index of the child Node. Note, that the index is 1-based. In other words: the Node represented by this ChildInfo has same name siblings this method will always return the default value (1).
      Returns:
      Returns the index of the child Node.