Uses of Class
sem.graph.Graph

Packages that use Graph
sem.graph   
sem.graphreader   
sem.graphvis   
sem.graphwriter   
 

Uses of Graph in sem.graph
 

Methods in sem.graph that return Graph
 Graph Graph.clone()
          Create a new independent graph with identical nodes and edges.
 

Uses of Graph in sem.graphreader
 

Methods in sem.graphreader that return Graph
 Graph ParsevalGraphReader.next()
          Get the next graph.
 Graph CnCGraphReader.next()
          Get the next graph.
 Graph TSVGraphReader.next()
          Get the next graph from the corpus.
 Graph RaspXmlGraphReader.next()
          Get the next graph from the corpus.
 Graph GraphReader.next()
           
 Graph RaspGraphReader.next()
          Get the next graph from the corpus.
 

Methods in sem.graphreader that return types with arguments of type Graph
 java.util.ArrayList<Graph> ParsevalGraphReader.nextSentence()
          Get the next sentence.
 java.util.ArrayList<Graph> CnCGraphReader.nextSentence()
          Get the next sentence.
 java.util.ArrayList<Graph> TSVGraphReader.nextSentence()
          Read a sentence from the corpus.
 java.util.ArrayList<Graph> RaspXmlGraphReader.nextSentence()
          Read a sentence from the corpus.
 java.util.ArrayList<Graph> GraphReader.nextSentence()
           
 java.util.ArrayList<Graph> RaspGraphReader.nextSentence()
          Read a sentence from the corpus.
 

Uses of Graph in sem.graphvis
 

Methods in sem.graphvis that return Graph
 Graph GraphVisualiser.getCurrentGraph()
          Get the currently active graph.
 

Methods in sem.graphvis with parameters of type Graph
 void GraphVisualiser.displayGraph(Graph graph)
          Display a single graph.
 

Method parameters in sem.graphvis with type arguments of type Graph
 void GraphVisualiser.displayGraphs(java.util.ArrayList<Graph> graphs)
          Display a list of graphs.
 void GraphVisualiser.displaySentences(java.util.ArrayList<java.util.ArrayList<Graph>> sentences)
          Display a list of sentences (a list of lists of graphs).
 

Uses of Graph in sem.graphwriter
 

Methods in sem.graphwriter with parameters of type Graph
 void GraphWriter.write(Graph graph)
           
 void TikzDependencyGraphWriter.write(Graph graph)
           
 void TSVGraphWriter.write(Graph graph)
          Write a graph (as the only graph in a sentence).
 

Method parameters in sem.graphwriter with type arguments of type Graph
 void GraphWriter.write(java.util.List<Graph> sentence)
           
 void TikzDependencyGraphWriter.write(java.util.List<Graph> sentence)
           
 void TSVGraphWriter.write(java.util.List<Graph> sentence)
          Write a sentence (list of graphs).