Class GradientVertexRenderer<V,E>
- java.lang.Object
-
- org.jungrapht.visualization.renderers.GradientVertexRenderer<V,E>
-
- Type Parameters:
V
- the vertex typeE
- the edge type
- All Implemented Interfaces:
Renderer.Vertex<V,E>
public class GradientVertexRenderer<V,E> extends Object implements Renderer.Vertex<V,E>
A renderer that will fill vertex shapes with a GradientPaint- Author:
- Tom Nelson
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jungrapht.visualization.renderers.Renderer.Vertex
Renderer.Vertex.NOOP<V,E>
-
-
Constructor Summary
Constructors Constructor Description GradientVertexRenderer(Color colorOne, Color colorTwo, boolean cyclic)
GradientVertexRenderer(MutableSelectedState<V> mutableSelectedState, Color colorOne, Color colorTwo, Color pickedColorOne, Color pickedColorTwo, boolean cyclic)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
paintShapeForVertex(RenderContext<V,E> renderContext, V v, Shape shape)
void
paintVertex(RenderContext<V,E> renderContext, LayoutModel<V> layoutModel, V v)
-
-
-
Method Detail
-
paintVertex
public void paintVertex(RenderContext<V,E> renderContext, LayoutModel<V> layoutModel, V v)
- Specified by:
paintVertex
in interfaceRenderer.Vertex<V,E>
-
paintShapeForVertex
protected void paintShapeForVertex(RenderContext<V,E> renderContext, V v, Shape shape)
-
-