Interface LayoutModel<V>

    • Method Detail

      • getWidth

        int getWidth()
        Returns:
        the width of the layout area
      • getHeight

        int getHeight()
        Returns:
        the height of the layout area
      • getPreferredWidth

        int getPreferredWidth()
      • getPreferredHeight

        int getPreferredHeight()
      • getCenter

        default Point getCenter()
      • accept

        void accept​(LayoutAlgorithm<V> layoutAlgorithm)
        allow the passed LayoutAlgorithm to operate on this LayoutModel
        Parameters:
        layoutAlgorithm - the algorithm to apply to this model's Points
      • getLocations

        default Map<V,​Point> getLocations()
        Returns:
        a mapping of Vertices to Point locations
      • setInitialDimensionFunction

        void setInitialDimensionFunction​(Function<org.jgrapht.Graph<V,​?>,​Pair<Integer>> initialDimensionFunction)
        The initialDimensionFunction sets the layout area bounds by evaluating the Graph
        Parameters:
        initialDimensionFunction -
      • setSize

        void setSize​(int width,
                     int helght)
        Parameters:
        width - to set
        helght - to set
      • setPreferredSize

        void setPreferredSize​(int width,
                              int helght)
        Parameters:
        width - to set
        helght - to set
      • stop

        default void stop()
        stop a relaxer Thread from continuing to operate
      • setRelaxing

        void setRelaxing​(boolean relaxing)
        indicates that there is a relaxer thread operating on this LayoutModel
        Parameters:
        relaxing - whether there is a relaxer thread
      • isRelaxing

        boolean isRelaxing()
        indicates that there is a relaxer thread operating on this LayoutModel
        Returns:
        relaxing
      • isLocked

        boolean isLocked​(V vertex)
        Parameters:
        vertex - the vertex whose locked state is being queried
        Returns:
        true if the position of vertex v is locked
      • set

        void set​(V vertex,
                 Point location)
        Changes the layout coordinates of vertex to location.
        Parameters:
        vertex - the vertex whose location is to be specified
        location - the coordinates of the specified location
      • set

        void set​(V vertex,
                 double x,
                 double y)
        Changes the layout coordinates of vertex to x, y.
        Parameters:
        vertex - the vertex to set location for
        x - coordinate to set
        y - coordinate to set
      • get

        Point get​(V vertex)
        Parameters:
        vertex - the vertex of interest
        Returns:
        the Point location for vertex
      • getGraph

        <E> org.jgrapht.Graph<V,​E> getGraph()
        Returns:
        the Graph that this model is mediating
      • setGraph

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

        void lock​(V vertex,
                  boolean locked)
      • lock

        void lock​(boolean locked)
      • isLocked

        boolean isLocked()
      • setInitializer

        void setInitializer​(Function<V,​Point> initializer)
      • resizeToSurroundingRectangle

        void resizeToSurroundingRectangle()
      • appendLayoutModel

        void appendLayoutModel​(LayoutModel<V> layoutModel)
      • setFireEvents

        default void setFireEvents​(boolean fireEvents)