Package diva.graph
Interface EdgeRenderer
-
- All Known Implementing Classes:
ArcRenderer
,BasicEdgeRenderer
,BusContentionApplet.LocalEdgeRenderer
,LinkController.LinkRenderer
,LocalZenoApplet.LocalEdgeRenderer
,SchedulingRelationController.SchedulingRelationRenderer
,TransitionController.LinkRenderer
public interface EdgeRenderer
A factory which creates a visual representation (EdgeFigure) given an edge input. The factory is not held responsible for routing the edge, but simply for providing the basic visual properties of the edge (color, line width, dashes, etc.). The client will set up the endpoints of the edge, and then tell the edge to route itself.- Version:
- $Id$
- Author:
- Michael Shilman
- Pt.AcceptedRating:
- Red
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Connector
render(java.lang.Object edge, Site tailSite, Site headSite)
Render a visual representation of the given edge.
-