Class AbstractEdgeRenderer<V,E>
- java.lang.Object
-
- org.jungrapht.visualization.renderers.AbstractEdgeRenderer<V,E>
-
- Type Parameters:
V
- vertex typeE
- edge type
- All Implemented Interfaces:
Renderer.Edge<V,E>
- Direct Known Subclasses:
HeavyweightEdgeRenderer
,LightweightEdgeRenderer
public abstract class AbstractEdgeRenderer<V,E> extends Object implements Renderer.Edge<V,E>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jungrapht.visualization.renderers.Renderer.Edge
Renderer.Edge.NOOP<V,E>
-
-
Constructor Summary
Constructors Constructor Description AbstractEdgeRenderer()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract void
drawSimpleEdge(RenderContext<V,E> renderContext, LayoutModel<V> layoutModel, E e)
protected abstract Shape
getEdgeShape(BiFunction<org.jgrapht.Graph<V,E>,E,Shape> edgeShapeFunction, E edge, org.jgrapht.Graph<V,E> graph)
For Heavyweight graph visualizations, edges are rendered with the user requested edgeShapeFunction.void
paintEdge(RenderContext<V,E> renderContext, LayoutModel<V> layoutModel, E e)
protected Shape
prepareFinalEdgeShape(RenderContext<V,E> renderContext, LayoutModel<V> layoutModel, E e, int[] coords, boolean[] loop)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jungrapht.visualization.renderers.Renderer.Edge
getEdgeArrowRenderingSupport, setEdgeArrowRenderingSupport
-
-
-
-
Method Detail
-
paintEdge
public void paintEdge(RenderContext<V,E> renderContext, LayoutModel<V> layoutModel, E e)
- Specified by:
paintEdge
in interfaceRenderer.Edge<V,E>
-
prepareFinalEdgeShape
protected Shape prepareFinalEdgeShape(RenderContext<V,E> renderContext, LayoutModel<V> layoutModel, E e, int[] coords, boolean[] loop)
-
getEdgeShape
protected abstract Shape getEdgeShape(BiFunction<org.jgrapht.Graph<V,E>,E,Shape> edgeShapeFunction, E edge, org.jgrapht.Graph<V,E> graph)
For Heavyweight graph visualizations, edges are rendered with the user requested edgeShapeFunction. For Lightweight graph visualizations, edges are rendered with a (lightweight) line edge except when they are articulated edges (sugiyama layout). The LightweightEdgeRenderer overrides this method to supply the correct edge shape.- Parameters:
edgeShapeFunction
- the user specified edgeShapeFunctionedge
- the edge to rendergraph
- for the Function context- Returns:
- the edge shape, heavyweight (anything) or lightweight (line or articulated line)
-
drawSimpleEdge
protected abstract void drawSimpleEdge(RenderContext<V,E> renderContext, LayoutModel<V> layoutModel, E e)
-
-