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

Packages that use VertexStringer
edu.uci.ics.jung.graph.decorators Provides mechanisms for annotating nodes consistently with useful information. 
edu.uci.ics.jung.io Provides a set of graph file format interpreters for loading graphs from disk. 
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 VertexStringer in edu.uci.ics.jung.graph.decorators
 

Classes in edu.uci.ics.jung.graph.decorators that implement VertexStringer
 class ConstantVertexStringer
          Returns the specified label for all vertices.
 class GlobalStringLabeller
          The GlobalStringLabeller applies labels to all vertices in a series of graphs.
 class NumberVertexValueStringer
          Returns the values specified by a NumberVertexValue instance as Strings.
 class StringLabeller
          A StringLabeller applies a set of labels to a Graph.
 class ToStringLabeller
          Labels vertices by their toString.
 

Uses of VertexStringer in edu.uci.ics.jung.io
 

Methods in edu.uci.ics.jung.io with parameters of type VertexStringer
 void PajekNetWriter.save(Graph g, String filename, VertexStringer vs, NumberEdgeValue nev)
           
 void PajekNetWriter.save(Graph g, String filename, VertexStringer vs, NumberEdgeValue nev, VertexLocationFunction vld)
          Saves g to filename.
 void PajekNetWriter.save(Graph g, Writer w, VertexStringer vs, NumberEdgeValue nev)
           
 void PajekNetWriter.save(Graph graph, Writer w, VertexStringer vs, NumberEdgeValue nev, VertexLocationFunction vld)
          Writes graph to w.
 

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

Fields in edu.uci.ics.jung.visualization declared as VertexStringer
protected  VertexStringer PluggableRenderer.vertexStringer
           
 

Methods in edu.uci.ics.jung.visualization that return VertexStringer
 VertexStringer PluggableRenderer.getVertexStringer()
           
 

Methods in edu.uci.ics.jung.visualization with parameters of type VertexStringer
 void PluggableRenderer.setVertexStringer(VertexStringer vs)
          Sets the VertexStringer that specifies the label to draw for each vertex.
 

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

Methods in edu.uci.ics.jung.visualization.transform.shape that return VertexStringer
 VertexStringer PluggableRendererDecorator.getVertexStringer()
           
 

Methods in edu.uci.ics.jung.visualization.transform.shape with parameters of type VertexStringer
 void PluggableRendererDecorator.setVertexStringer(VertexStringer vs)
           
 

Uses of VertexStringer in samples.graph
 

Classes in samples.graph that implement VertexStringer
static class VertexImageShaperDemo.VertexStringerImpl
          A simple implementation of VertexStringer that gets Vertex labels from a Map
 

Fields in samples.graph declared as VertexStringer
protected  VertexStringer PluggableRendererDemo.vs
           
protected  VertexStringer PluggableRendererDemo.vs_none