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

Packages that use StringLabeller
edu.uci.ics.jung.graph.decorators Provides mechanisms for annotating nodes consistently with useful information. 
edu.uci.ics.jung.graph.filters.impl Provides sample implementations and generally useful filters. 
edu.uci.ics.jung.io Provides a set of graph file format interpreters for loading graphs from disk. 
edu.uci.ics.jung.utils Provides a series of useful utility methods, and a number of custom helper classes designed specifically for this application. 
edu.uci.ics.jung.visualization.graphdraw Provides support classes for the GraphDraw mechanism: generalized functions so users can tweak variables freely when creating with EdgeDraw. 
samples.graph.southern   
scratch.danyel   
scratch.danyel.sample   
test.edu.uci.ics.jung.algorithms.cluster   
 

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 GlobalStringLabeller.getInstance()
           
static StringLabeller GlobalStringLabeller.getLabeller(Graph g)
           
static StringLabeller StringLabeller.getLabeller(Graph g)
          Gets a labeller associated with this graph.
static StringLabeller StringLabeller.getLabeller(Graph g, Object key)
          Returns a labeller attached to a particular key in the graph.
static StringLabeller GlobalStringLabeller.setLabellerTo(Graph g)
          Sets the default StringLabeller of this graph to be a ToStringLabeller.
static StringLabeller ToStringLabeller.setLabellerTo(Graph g)
          Sets the default StringLabeller of this graph to be a ToStringLabeller.
static StringLabeller GlobalStringLabeller.setLabellerTo(Graph g, Object key)
          Sets the StringLabeller of this graph, at this key, to be a ToStringLabeller.
static StringLabeller ToStringLabeller.setLabellerTo(Graph g, Object key)
          Sets the StringLabeller of this graph, at this key, 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(String threshhold, StringLabeller sl, boolean acceptAboveThreshold)
           
 

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

Methods in edu.uci.ics.jung.io that return StringLabeller
protected  StringLabeller GraphMLFileHandler.getLabeller()
           
 

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

Fields in edu.uci.ics.jung.utils declared as StringLabeller
protected  StringLabeller StringLabellerVertexMapper.sl_d
           
protected  StringLabeller StringLabellerVertexMapper.sl_s
           
 

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 String GraphUtils.printVertices(Collection s, StringLabeller sl)
          For every vertex in s, prints sl.get(s).
 

Constructors in edu.uci.ics.jung.utils with parameters of type StringLabeller
StringLabellerVertexMapper(StringLabeller sl_src, StringLabeller sl_dest)
           
 

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

Fields in edu.uci.ics.jung.visualization.graphdraw declared as StringLabeller
protected  StringLabeller SettableRenderer.mStringLabeller
          Deprecated.  
 

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

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

Uses of StringLabeller in samples.graph.southern
 

Methods in samples.graph.southern with parameters of type StringLabeller
protected static void TestSouthernWomenBipartite.dumpNames(KPartiteGraph bpg, StringLabeller women, StringLabeller dates)
           
 

Constructors in samples.graph.southern with parameters of type StringLabeller
BipartiteVertexRenderer(KPartiteGraph bpg, StringLabeller women, StringLabeller dates)
           
BipartiteVertexRenderer(StringLabeller women, StringLabeller dates)
           
 

Uses of StringLabeller in scratch.danyel
 

Methods in scratch.danyel with parameters of type StringLabeller
static void QuickDraw.quickDraw(Graph g, StringLabeller sl)
          Draws a graph quickly with the given StringLabeller and the SettableRenderer with the "light" style.
 void QuickDrawRenderer.setStringLabeller(StringLabeller sl)
           
 

Constructors in scratch.danyel with parameters of type StringLabeller
BPVR(KPartiteGraph bpg, StringLabeller women, StringLabeller dates)
           
BPVR(StringLabeller women, StringLabeller dates)
           
QuickDrawRenderer(StringLabeller sl)
          Creates a QuickDrawRenderer that will be drawn in the "light" style: a colored box next to text, instead of text overlaying the box.
 

Uses of StringLabeller in scratch.danyel.sample
 

Constructors in scratch.danyel.sample with parameters of type StringLabeller
FadeBetweennessRenderer(StringLabeller sl, FadingVertexLayout fvl, PickedInfo pi)
           
FadeRenderer(StringLabeller sl, FadingVertexLayout fvl)
           
SimpleRenderer(StringLabeller sl)
           
 

Uses of StringLabeller in test.edu.uci.ics.jung.algorithms.cluster
 

Methods in test.edu.uci.ics.jung.algorithms.cluster with parameters of type StringLabeller
 Vertex[] TestBicomponentClusterer.getVerticesByLabel(Graph graph, StringLabeller sl)
           
 void TestBicomponentClusterer.testComponents(Graph graph, Vertex[] vertices, Set[] c, StringLabeller sl)