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

Packages that use VertexShapeFunction
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 VertexShapeFunction in edu.uci.ics.jung.graph.decorators
 

Subinterfaces of VertexShapeFunction in edu.uci.ics.jung.graph.decorators
 interface SettableVertexShapeFunction
           
 

Classes in edu.uci.ics.jung.graph.decorators that implement VertexShapeFunction
 class AbstractVertexShapeFunction
           
 class EllipseVertexShapeFunction
           
 class VertexIconAndShapeFunction
          A default implementation that stores images in a Map keyed on the vertex.
 

Fields in edu.uci.ics.jung.graph.decorators declared as VertexShapeFunction
protected  VertexShapeFunction VertexIconAndShapeFunction.delegate
           
 

Methods in edu.uci.ics.jung.graph.decorators that return VertexShapeFunction
 VertexShapeFunction VertexIconAndShapeFunction.getDelegate()
           
 

Methods in edu.uci.ics.jung.graph.decorators with parameters of type VertexShapeFunction
 void VertexIconAndShapeFunction.setDelegate(VertexShapeFunction delegate)
           
 

Constructors in edu.uci.ics.jung.graph.decorators with parameters of type VertexShapeFunction
VertexIconAndShapeFunction(VertexShapeFunction delegate)
           
 

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

Fields in edu.uci.ics.jung.visualization declared as VertexShapeFunction
protected  VertexShapeFunction PluggableRenderer.vertexShapeFunction
           
 

Methods in edu.uci.ics.jung.visualization that return VertexShapeFunction
 VertexShapeFunction HasShapeFunctions.getVertexShapeFunction()
           
 VertexShapeFunction PluggableRenderer.getVertexShapeFunction()
          Returns the VertexShapeFunction currently being used by this instance.
 

Methods in edu.uci.ics.jung.visualization with parameters of type VertexShapeFunction
 void PluggableRenderer.setVertexShapeFunction(VertexShapeFunction vsf)
          Sets the VertexShapeFunction, which specifies the Shape for each vertex.
 

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

Methods in edu.uci.ics.jung.visualization.transform.shape that return VertexShapeFunction
 VertexShapeFunction PluggableRendererDecorator.getVertexShapeFunction()
           
 

Methods in edu.uci.ics.jung.visualization.transform.shape with parameters of type VertexShapeFunction
 void PluggableRendererDecorator.setVertexShapeFunction(VertexShapeFunction vsf)
           
 

Uses of VertexShapeFunction in samples.graph
 

Classes in samples.graph that implement VertexShapeFunction
static class VertexImageShaperDemo.DemoVertexImageShapeFunction
          this class exists only to provide settings to turn on/off shapes and image fill in this demo.
 

Constructors in samples.graph with parameters of type VertexShapeFunction
VertexImageShaperDemo.DemoVertexImageShapeFunction(VertexShapeFunction delegate)