Class JLabelEdgeLabelRenderer

    • Field Detail

      • noFocusBorder

        protected static Border noFocusBorder
      • pickedEdgeLabelColor

        protected Color pickedEdgeLabelColor
      • rotateEdgeLabels

        protected boolean rotateEdgeLabels
    • Constructor Detail

      • JLabelEdgeLabelRenderer

        public JLabelEdgeLabelRenderer​(Color pickedEdgeLabelColor)
      • JLabelEdgeLabelRenderer

        public JLabelEdgeLabelRenderer​(Color pickedEdgeLabelColor,
                                       boolean rotateEdgeLabels)
        Creates an instance with the specified properties.
        Parameters:
        pickedEdgeLabelColor - the color to use for rendering the labels of selected edges
        rotateEdgeLabels - whether the
    • Method Detail

      • setRotateEdgeLabels

        public void setRotateEdgeLabels​(boolean rotateEdgeLabels)
        Specified by:
        setRotateEdgeLabels in interface EdgeLabelRenderer
        Parameters:
        rotateEdgeLabels - The rotateEdgeLabels to set.
      • 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()
      • getEdgeLabelRendererComponent

        public <E> Component getEdgeLabelRendererComponent​(JComponent vv,
                                                           Object value,
                                                           Font font,
                                                           boolean isSelected,
                                                           E edge)
        Returns the default label renderer for an Edge
        Specified by:
        getEdgeLabelRendererComponent in interface EdgeLabelRenderer
        Type Parameters:
        E - the edge type
        Parameters:
        vv - the VisualizationViewer to render on
        value - the value to assign to the label for Edge
        edge - the Edge
        font - the font to use in rendering the label
        isSelected - whether the edge 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)