Class Node<T>

    • Field Detail

      • INDENTATION

        public static String INDENTATION
      • t

        protected T t
      • tree

        protected Tree<T> tree
      • childrenElements

        protected Set<T> childrenElements
      • descendantElements

        protected Set<T> descendantElements
      • parent

        protected Node<T> parent
      • children

        protected Set<Node<T>> children
      • descendants

        protected Set<Node<T>> descendants
    • Constructor Detail

      • Node

        public Node​(T t)