Interface VisualizationModel<V,​E>

    • Method Detail

      • builder

        static <V,​E> VisualizationModel.Builder<V,​E,​?,​?> builder()
        Type Parameters:
        V - vertex type
        E - edge type
        Returns:
        a Builder to create a VisualizationModel instance
      • builder

        static <V,​E> VisualizationModel.Builder<V,​E,​?,​?> builder​(org.jgrapht.Graph<V,​E> graph)
        Type Parameters:
        V - the vertex type
        E - the edge type
        Parameters:
        graph - the graph to visualize
        Returns:
        a Builder to create a VisualizationModel instance
      • builder

        static <V,​E> VisualizationModel.Builder<V,​E,​?,​?> builder​(LayoutModel<V> layoutModel)
        Type Parameters:
        V - the vertex type
        E - the edge type
        Parameters:
        layoutModel - the layout model for the visualization model
        Returns:
        a Builder to create a VisualizationModel instance
      • getLayoutSize

        Dimension getLayoutSize()
        Returns:
        the current layoutSize of the visualization's space
      • setLayoutAlgorithm

        void setLayoutAlgorithm​(LayoutAlgorithm<V> layoutAlgorithm)
        Parameters:
        layoutAlgorithm - the algorithm to apply to the vertex locations
      • getLayoutAlgorithm

        LayoutAlgorithm<V> getLayoutAlgorithm()
        Returns:
        the layout algorithm that was used to place the vertices
      • getLayoutModel

        LayoutModel<V> getLayoutModel()
        Returns:
        the layout model that holds vertex location state
      • setLayoutModel

        void setLayoutModel​(LayoutModel<V> layoutModel)
        Parameters:
        layoutModel - the layout model to hold vertex locations
      • getGraph

        org.jgrapht.Graph<V,​E> getGraph()
        Returns:
        the graph being visualized
      • setGraph

        void setGraph​(org.jgrapht.Graph<V,​E> graph)
        Parameters:
        graph - the graph to visualize
      • setGraph

        void setGraph​(org.jgrapht.Graph<V,​E> graph,
                      boolean forceUpdate)
        Parameters:
        graph - the graph to visualize
        forceUpdate - whether to force an update
      • getInitialDimensionFunction

        Function<org.jgrapht.Graph<V,​?>,​Pair<Integer>> getInitialDimensionFunction()
      • setInitialDimensionFunction

        void setInitialDimensionFunction​(Function<org.jgrapht.Graph<V,​?>,​Pair<Integer>> initialDimensionFunction)