Interface VisualizationViewer<V,​E>

    • Method Detail

      • builder

        static <V,​E> VisualizationViewer.Builder<V,​E,​?,​?> builder()
        Type Parameters:
        V - vertex type
        E - edge type
        Returns:
        the builder
      • builder

        static <V,​E> VisualizationViewer.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 be visualized
        Returns:
        the builder
      • builder

        static <V,​E> VisualizationViewer.Builder<V,​E,​?,​?> builder​(VisualizationModel<V,​E> visualizationModel)
        Type Parameters:
        V - the vertex type
        E - the edge type
        Parameters:
        visualizationModel - the model to hold visualization state
        Returns:
        the builder
      • setGraphMouse

        void setGraphMouse​(VisualizationViewer.GraphMouse graphMouse)
        a setter for the GraphMouse. This will remove any previous GraphMouse (including the one that is added in the initMouseClicker method.
        Parameters:
        graphMouse - new value
      • addGraphMouseListener

        void addGraphMouseListener​(GraphMouseListener<V> graphMouseListener)
        This is the interface for adding a mouse listener. The GEL will be called back with mouse clicks on vertices.
        Parameters:
        graphMouseListener - the mouse listener to add
      • setEdgeToolTipFunction

        void setEdgeToolTipFunction​(Function<E,​String> edgeToolTipFunction)
        Parameters:
        edgeToolTipFunction - the edgeToolTipFunction to set
      • setMouseEventToolTipFunction

        void setMouseEventToolTipFunction​(Function<MouseEvent,​String> mouseEventToolTipFunction)
        Parameters:
        mouseEventToolTipFunction - the mouseEventToolTipFunction to set
      • setVertexToolTipFunction

        void setVertexToolTipFunction​(Function<V,​String> vertexToolTipFunction)
        Parameters:
        vertexToolTipFunction - the vertexToolTipFunction to set
      • getToolTipText

        String getToolTipText​(MouseEvent event)
        called by the superclass to display tooltips
      • setToolTipText

        void setToolTipText​(String toolTipText)