Interface GenericTreeNode<T>

    • Method Detail

      • getName

        java.lang.String getName()
        Returns the name associated with this node, if any.
        Returns:
        The name associated with this node, if any.
      • getValue

        java.lang.Object getValue()
        Returns the value associated with this node, if any.
        Returns:
        The value associated with this node, if any.
      • getChildren

        java.util.Enumeration<GenericTreeNode<T>> getChildren()
        Returns the enumeration of children for this node. It will always return a non-null Enumeration, though it may be empty.
        Returns:
        The Enumeration of children.
      • getChildCount

        int getChildCount()
        Returns the number of children for this node.
        Returns:
        The number of children for this node.