Uses of Class
edu.uci.ics.jung.graph.decorators.StringLabeller

Packages that use StringLabeller
edu.uci.ics.jung.graph.decorators   
edu.uci.ics.jung.graph.filters.impl   
edu.uci.ics.jung.utils   
edu.uci.ics.jung.visualization.graphdraw   
 

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

Subclasses of StringLabeller in edu.uci.ics.jung.graph.decorators
 class GlobalStringLabeller
          The GlobalStringLabeller applies labels to all vertices in a series of graphs.
 class ToStringLabeller
          Labels vertices by their toString.
 

Methods in edu.uci.ics.jung.graph.decorators that return StringLabeller
static StringLabeller ToStringLabeller.setLabellerTo(Graph g, java.lang.Object key)
          Sets the StringLabeller of this graph, at this key, to be a ToStringLabeller.
static StringLabeller ToStringLabeller.setLabellerTo(Graph g)
          Sets the default StringLabeller of this graph to be a ToStringLabeller.
static StringLabeller StringLabeller.getLabeller(Graph g)
          Gets a labeller associated with this graph.
static StringLabeller StringLabeller.getLabeller(Graph g, java.lang.Object key)
          Returns a labeller attached to a particular key in the graph.
static StringLabeller GlobalStringLabeller.setLabellerTo(Graph g, java.lang.Object key)
          Sets the StringLabeller of this graph, at this key, to be a ToStringLabeller.
static StringLabeller GlobalStringLabeller.getInstance()
           
static StringLabeller GlobalStringLabeller.getLabeller(Graph g)
           
static StringLabeller GlobalStringLabeller.setLabellerTo(Graph g)
          Sets the default StringLabeller of this graph to be a ToStringLabeller.
 

Uses of StringLabeller in edu.uci.ics.jung.graph.filters.impl
 

Methods in edu.uci.ics.jung.graph.filters.impl that return StringLabeller
 StringLabeller AlphabeticVertexFilter.getStringLabeller()
          Returns the String Labeller being used by this filter to check vertices with.
 

Methods in edu.uci.ics.jung.graph.filters.impl with parameters of type StringLabeller
 void AlphabeticVertexFilter.setStringLabeller(StringLabeller stringLabeller)
          Sets the stringLabeller.
 

Constructors in edu.uci.ics.jung.graph.filters.impl with parameters of type StringLabeller
AlphabeticVertexFilter(java.lang.String threshhold, StringLabeller sl, boolean acceptAboveThreshold)
           
 

Uses of StringLabeller in edu.uci.ics.jung.utils
 

Methods in edu.uci.ics.jung.utils with parameters of type StringLabeller
static void GraphUtils.copyLabels(StringLabeller source, StringLabeller target)
          Copies the labels of vertices from one StringLabeller to another.
static java.lang.String GraphUtils.printVertices(java.util.Collection s, StringLabeller sl)
          For every vertex in s, prints sl.get(s).
 

Uses of StringLabeller in edu.uci.ics.jung.visualization.graphdraw
 

Methods in edu.uci.ics.jung.visualization.graphdraw with parameters of type StringLabeller
 void SettableRenderer.setStringLabeller(StringLabeller sl)
           
 

Constructors in edu.uci.ics.jung.visualization.graphdraw with parameters of type StringLabeller
SettableRenderer(StringLabeller sl)
          Creates a SettableRenderer that will be drawn in the "heavy" style: a box around the label
SettableRenderer(StringLabeller sl, EdgeStringer el)
          Creates a SettableRenderer that will label edges with the given EdgeStringer.