Uses of Interface
edu.uci.ics.jung.graph.decorators.EdgePaintFunction

Packages that use EdgePaintFunction
edu.uci.ics.jung.graph.decorators Provides mechanisms for annotating nodes consistently with useful information. 
edu.uci.ics.jung.visualization Provides a visualization mechanism for drawing and rendering Graphs. 
edu.uci.ics.jung.visualization.transform.shape   
samples.graph Provides sample graph code that may be of interest. 
 

Uses of EdgePaintFunction in edu.uci.ics.jung.graph.decorators
 

Classes in edu.uci.ics.jung.graph.decorators that implement EdgePaintFunction
 class AbstractEdgePaintFunction
          An implementation of EdgePaintFunction that is appropriate for edge shapes that are not filled, such as lines or curves.
 class ConstantEdgePaintFunction
          Provides the same Paint for any specified edge.
 class GradientEdgePaintFunction
          Creates GradientPaint instances which can be used to paint an Edge.
 class PickableEdgePaintFunction
          Paints each edge according to the Paint parameters given in the constructor, so that picked and non-picked edges can be made to look different.
 

Uses of EdgePaintFunction in edu.uci.ics.jung.visualization
 

Classes in edu.uci.ics.jung.visualization that implement EdgePaintFunction
 class EdgeColorToEdgePaintFunctionConverter
          Deprecated. This utility class converts an EdgeColorFunction into an EdgePaintFunction
 

Fields in edu.uci.ics.jung.visualization declared as EdgePaintFunction
protected  EdgePaintFunction PluggableRenderer.edgePaintFunction
           
 

Methods in edu.uci.ics.jung.visualization that return EdgePaintFunction
 EdgePaintFunction PluggableRenderer.getEdgePaintFunction()
           
 

Methods in edu.uci.ics.jung.visualization with parameters of type EdgePaintFunction
 void PluggableRenderer.setEdgePaintFunction(EdgePaintFunction impl)
           
 

Uses of EdgePaintFunction in edu.uci.ics.jung.visualization.transform.shape
 

Methods in edu.uci.ics.jung.visualization.transform.shape that return EdgePaintFunction
 EdgePaintFunction PluggableRendererDecorator.getEdgePaintFunction()
           
 

Methods in edu.uci.ics.jung.visualization.transform.shape with parameters of type EdgePaintFunction
 void PluggableRendererDecorator.setEdgePaintFunction(EdgePaintFunction impl)
           
 

Uses of EdgePaintFunction in samples.graph
 

Classes in samples.graph that implement EdgePaintFunction
 class PluggableRendererDemo.GradientPickedEdgePaintFunction
           
 class ShortestPathDemo.MyEdgePaintFunction
           
 

Constructors in samples.graph with parameters of type EdgePaintFunction
PluggableRendererDemo.GradientPickedEdgePaintFunction(EdgePaintFunction defaultEdgePaintFunction, HasGraphLayout vv, LayoutTransformer transformer, PickedInfo pi)