Class JLabelVertexLabelRenderer

    • Field Detail

      • noFocusBorder

        protected static Border noFocusBorder
      • pickedVertexLabelColor

        protected Color pickedVertexLabelColor
    • Constructor Detail

      • JLabelVertexLabelRenderer

        public JLabelVertexLabelRenderer​(Color pickedVertexLabelColor)
        Creates a default table cell renderer.
        Parameters:
        pickedVertexLabelColor - the color to use for rendering the labels of selected vertices
    • Method Detail

      • setForeground

        public void setForeground​(Color c)
        Overrides JComponent.setForeground to assign the unselected-foreground color to the specified color.
        Overrides:
        setForeground in class JComponent
        Parameters:
        c - set the foreground color to this value
      • setBackground

        public void setBackground​(Color c)
        Overrides JComponent.setBackground to assign the unselected-background color to the specified color.
        Overrides:
        setBackground in class JComponent
        Parameters:
        c - set the background color to this value
      • updateUI

        public void updateUI()
        Notification from the UIManager that the look and feel has changed. Replaces the current UI object with the latest version from the UIManager.
        Overrides:
        updateUI in class JLabel
        See Also:
        JComponent.updateUI()
      • getVertexLabelRendererComponent

        public <V> Component getVertexLabelRendererComponent​(JComponent vv,
                                                             Object value,
                                                             Font font,
                                                             boolean isSelected,
                                                             V vertex)
        Returns the default label renderer for a Vertex
        Specified by:
        getVertexLabelRendererComponent in interface VertexLabelRenderer
        Type Parameters:
        V - the vertex type
        Parameters:
        vv - the VisualizationViewer to render on
        value - the value to assign to the label for Vertex
        vertex - the Vertex
        font - the font to use in rendering the label
        isSelected - whether the vertex is currently selected
        Returns:
        the default label renderer
      • repaint

        public void repaint​(long tm,
                            int x,
                            int y,
                            int width,
                            int height)
        Overridden for performance reasons. See the Implementation Note for more information.
        Overrides:
        repaint in class JComponent
      • setValue

        protected void setValue​(Object value)
        Sets the String object for the cell being rendered to value.
        Parameters:
        value - the string value for this cell; if value is null it sets the text value to an empty string
        See Also:
        JLabel.setText(java.lang.String)