Interface Traversal



  • public interface Traversal
    • Method Summary

      Modifier and Type Method and Description
      void element(Rectangle rectangle, int nodeId)
      Method gets called for each element contained in the tree.
      void node(Rectangle rectangle)
      Method gets called for each inner node in the tree.
    • Method Detail

      • element

        void element(Rectangle rectangle,
                     int nodeId)
        Method gets called for each element contained in the tree.
        Parameters:
        rectangle - the minimal bounding box of the element.
        nodeId - the id of the element.
      • node

        void node(Rectangle rectangle)
        Method gets called for each inner node in the tree.
        Parameters:
        rectangle - the minimal bounding box of the node.