Interface IElement

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.Collection getChildren()
      Get the children of the element, or return null if the element is in leaf level.
      IElement getParent()
      Get the parent of the element object, or return null if the element is in top level.
      void setParent​(IElement parent)
      Set the parent of the element.
    • Method Detail

      • getParent

        IElement getParent()
        Get the parent of the element object, or return null if the element is in top level.
        Returns:
        the parent of the element.
      • setParent

        void setParent​(IElement parent)
        Set the parent of the element.
        Parameters:
        parent - the parent of the element
      • getChildren

        java.util.Collection getChildren()
        Get the children of the element, or return null if the element is in leaf level.
        Returns:
        the children of the element.