edu.uci.ics.jung.visualization.renderers.VertexLabelRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jung-visualization Show documentation
Show all versions of jung-visualization Show documentation
Core visualization support for the JUNG project
The newest version!
/*
* Copyright (c) 2005, The JUNG Authors
* All rights reserved.
*
* This software is open-source under the BSD license; see either "license.txt"
* or https://github.com/jrtom/jung/blob/master/LICENSE for a description.
*
* Created on Apr 14, 2005
*/
package edu.uci.ics.jung.visualization.renderers;
import java.awt.Component;
import java.awt.Font;
import javax.swing.JComponent;
/**
* @author Tom Nelson
*
*
*/
public interface VertexLabelRenderer {
/**
* Returns the component used for drawing the label. This method is
* used to configure the renderer appropriately before drawing.
*
* @param vv the component that is asking the renderer to draw
* @param value the value of the cell to be rendered; the details of how to
* render the value are up to the renderer implementation. For example,
* if {@code value} is the string "true", it could be rendered as the
* string or as a checked checkbox.
* @param font the font to use in rendering the label
* @param isSelected whether the vertex is currently selected
* @param vertex the edge whose label is being drawn
* @param the vertex type
* @return the component used for drawing the label
*/
Component getVertexLabelRendererComponent(JComponent vv, Object value,
Font font, boolean isSelected, V vertex);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy