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. 
scratch.danyel   
scratch.scott.sample   
test.edu.uci.ics.jung.algorithms.blockmodel   
test.edu.uci.ics.jung.algorithms.cluster   
test.edu.uci.ics.jung.graph.decorators   
test.edu.uci.ics.jung.utils   
 

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

Methods in edu.uci.ics.jung.graph.decorators that throw StringLabeller.UniqueLabelException
 void StringLabeller.assignDefaultLabels(Set vertices, int offset)
          Assigns textual labels to every vertex passed in.
 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 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)
           
 

Uses of StringLabeller.UniqueLabelException in scratch.danyel
 

Methods in scratch.danyel that throw StringLabeller.UniqueLabelException
 void WeirdFailure.testWeirdFailure()
           
 

Uses of StringLabeller.UniqueLabelException in scratch.scott.sample
 

Methods in scratch.scott.sample that throw StringLabeller.UniqueLabelException
static void RankingDemo.main(String[] args)
           
 

Constructors in scratch.scott.sample that throw StringLabeller.UniqueLabelException
RankingDemo(String title)
           
 

Uses of StringLabeller.UniqueLabelException in test.edu.uci.ics.jung.algorithms.blockmodel
 

Methods in test.edu.uci.ics.jung.algorithms.blockmodel that throw StringLabeller.UniqueLabelException
 void TestGraphCollapser.setUp()
           
 void TestGraphCollapser.testCollapserNull()
           
 void TestGraphCollapser.testCollapserOne()
           
 void TestGraphCollapser.testCollapserTwo()
           
 void TestFullyEquivalent.testFullyEquivalent()
           
 void TestFullyEquivalent.testFullyEquivalent2()
           
 void TestFullyEquivalent.testFullyEquivalentDirected()
           
 void TestFullyEquivalent.testFullyEquivalentDirectedSelfLoop()
           
 

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

Methods in test.edu.uci.ics.jung.algorithms.cluster that throw StringLabeller.UniqueLabelException
 void TestBicomponentClusterer.testExtract0()
           
 void TestBicomponentClusterer.testExtractEdge()
           
 void TestBicomponentClusterer.testExtractV()
           
 

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

Methods in test.edu.uci.ics.jung.graph.decorators that throw StringLabeller.UniqueLabelException
 void TestGlobalStringLabeller.testChangeInGlobalLabeller()
           
 void TestLabeller.testClear()
           
 void TestGlobalStringLabeller.testGlobalLabeller()
           
 void TestGlobalStringLabeller.testGlobalLabellerChange()
           
 void TestLabeller.testLabeller()
           
 void TestLabeller.testLabellerFail()
           
 void TestLabeller.testLabellerFail2()
           
 void TestGlobalStringLabeller.testLabelRelabel()
          JMadden pointed out that this is a problem: if you forget to clear out the table between runs, it'll fail.
 void TestMultiLabeller.testToLabeller()
           
 

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

Methods in test.edu.uci.ics.jung.utils that throw StringLabeller.UniqueLabelException
 void TestGraphUtils.testCopyLabels()