Class DefaultLayoutModel<V>

    • Method Detail

      • set

        public void set​(V vertex,
                        Point location)
        Description copied from interface: LayoutModel
        Changes the layout coordinates of vertex to location.
        Specified by:
        set in interface LayoutModel<V>
        Overrides:
        set in class AbstractLayoutModel<V>
        Parameters:
        vertex - the vertex whose location is to be specified
        location - the coordinates of the specified location
      • set

        public void set​(V vertex,
                        double x,
                        double y)
        Description copied from interface: LayoutModel
        Changes the layout coordinates of vertex to x, y.
        Specified by:
        set in interface LayoutModel<V>
        Overrides:
        set in class AbstractLayoutModel<V>
        Parameters:
        vertex - the vertex to set location for
        x - coordinate to set
        y - coordinate to set
      • get

        public Point get​(V vertex)
        Specified by:
        get in interface LayoutModel<V>
        Parameters:
        vertex - the vertex of interest
        Returns:
        the Point location for vertex
      • clear

        public void clear()
        Description copied from interface: Caching
        clear cache
        Specified by:
        clear in interface Caching