Class MultiRowEdgeAwareTreeLayoutAlgorithm<V,​E>

    • Constructor Detail

      • MultiRowEdgeAwareTreeLayoutAlgorithm

        public MultiRowEdgeAwareTreeLayoutAlgorithm()
      • MultiRowEdgeAwareTreeLayoutAlgorithm

        protected MultiRowEdgeAwareTreeLayoutAlgorithm​(MultiRowEdgeAwareTreeLayoutAlgorithm.Builder<V,​E,​?,​?> builder)
        create an instance with the passed builder's parameters
        Parameters:
        builder - the builder that holds configuration parameters
    • Method Detail

      • buildTree

        protected void buildTree​(LayoutModel<V> layoutModel,
                                 V vertex,
                                 int x,
                                 int y,
                                 Set<V> seen)
        Build a subtree rooted at the passed vertex, placed at passed coordinates (x,y)
        Overrides:
        buildTree in class TreeLayoutAlgorithm<V>
        Parameters:
        layoutModel - the LayoutModel to hold the vertex positions
        vertex - the vertex to place in position
        x - the x position
        y - the y position
        seen - a set of vertices that were already 'seen' (and placed in the layoutModel)
      • calculateWidth

        protected int calculateWidth​(LayoutModel<V> layoutModel,
                                     V vertex,
                                     Set<V> seen)
        Calculate the width of the subtree rooted at he passed vertex
        Overrides:
        calculateWidth in class TreeLayoutAlgorithm<V>
        Parameters:
        layoutModel - the source of the graph vertices
        vertex - the vertex at the root of the current subtree
        seen - a set of vertices that were already measured
        Returns:
      • calculateHeight

        protected int calculateHeight​(LayoutModel<V> layoutModel,
                                      V vertex,
                                      Set<V> seen)
        Calculate the height of the subtree rooted at the passed vertex
        Overrides:
        calculateHeight in class TreeLayoutAlgorithm<V>
        Parameters:
        layoutModel - the source of the Graph and its vertices
        vertex - the vertex at the top of the current subtree
        seen - a set of vertices that were already counted
        Returns:
      • buildTree

        protected Set<V> buildTree​(LayoutModel<V> layoutModel)
        Description copied from class: MultiRowTreeLayoutAlgorithm
        Build the entire forest, first measuring the width and height, then possibly expanding the layout area, then placing the vertices under rows of tree roots
        Overrides:
        buildTree in class MultiRowTreeLayoutAlgorithm<V>
        Parameters:
        layoutModel - the model to hold vertex positions
        Returns:
        the roots vertices of the tree
      • alignBuildTree

        protected Set<V> alignBuildTree​(LayoutModel<V> layoutModel)
        After the tree is configured, visit all of the vertices that are on favored edges and adjust their position to the left side of their children's bounding box. This helps provide a more linear path for favored edge endpoints
        Parameters:
        layoutModel - the source of the graph and its vertices
        Returns:
        the Set of root vertices