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

Packages that use StringLabeller.UniqueLabelException
edu.uci.ics.jung.graph.decorators Provides mechanisms for annotating nodes consistently with useful information.  
edu.uci.ics.jung.utils Provides a series of useful utility methods, and a number of custom helper classes designed specifically for this application. 
samples.graph Provides sample graph code that may be of interest.  
 

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

Methods in edu.uci.ics.jung.graph.decorators that throw StringLabeller.UniqueLabelException
 void GlobalStringLabeller.setLabel(Vertex v, String l)
          Associates a Vertex with a Label, overrwriting any previous labels on this vertex or vertices equal to it.
 void StringLabeller.setLabel(Vertex v, String l)
          Associates a Vertex with a Label, overrwriting any previous labels on this vertex.
 void StringLabeller.assignDefaultLabels(Set vertices, int offset)
          Assigns textual labels to every vertex passed in.
 void ToStringLabeller.setLabel(Vertex v, String l)
          This method always throws an IllegalArgument exception: you cannot externally set the setstring method.
 

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

Methods in edu.uci.ics.jung.utils that throw StringLabeller.UniqueLabelException
static void GraphUtils.copyLabels(StringLabeller source, StringLabeller target)
          Copies the labels of vertices from one StringLabeller to another.
 

Uses of StringLabeller.UniqueLabelException in samples.graph
 

Methods in samples.graph that throw StringLabeller.UniqueLabelException
static void RankingDemo.main(String[] args)