Uses of Interface
edu.iu.cnets.klatsch.model.Graph

Packages that use Graph
edu.iu.cnets.klatsch.feed   
edu.iu.cnets.klatsch.gui   
edu.iu.cnets.klatsch.lang   
edu.iu.cnets.klatsch.model   
edu.iu.cnets.klatsch.model.basic   
edu.iu.cnets.klatsch.model.gephi   
 

Uses of Graph in edu.iu.cnets.klatsch.feed
 

Methods in edu.iu.cnets.klatsch.feed with parameters of type Graph
 void Truthy.updateTrust(Graph g)
          Performs post-construction updating of the trusted weights in a graph derived from the Truthy feed.
 void Buzz.updateTrust(Graph g)
          Performs post-construction updating of the trusted weights in a graph derived from the Buzz feed.
 

Uses of Graph in edu.iu.cnets.klatsch.gui
 

Fields in edu.iu.cnets.klatsch.gui declared as Graph
(package private)  Graph WidgetGraph.g
          the graph we're showing
 

Constructors in edu.iu.cnets.klatsch.gui with parameters of type Graph
WidgetGraph(KlatschGui parent, Graph g, java.lang.String layout)
          Initializes a new graph widget.
 

Uses of Graph in edu.iu.cnets.klatsch.lang
 

Fields in edu.iu.cnets.klatsch.lang declared as Graph
(package private)  Graph VGraph.g
           
 

Constructors in edu.iu.cnets.klatsch.lang with parameters of type Graph
VGraph(Graph g)
          Initializes with the underlying graph data.
 

Uses of Graph in edu.iu.cnets.klatsch.model
 

Methods in edu.iu.cnets.klatsch.model that return Graph
 Graph Graph.actorGraph()
           
 Graph Graph.actorMemeGraph()
           
 Graph Graph.component(int n)
           
 Graph Graph.memeGraph()
           
 Graph Graph.trustedGraph()
           
 

Methods in edu.iu.cnets.klatsch.model with parameters of type Graph
 void Feed.updateTrust(Graph g)
          Performs any trust updates necessary on a graph assembled from this feed.
 

Uses of Graph in edu.iu.cnets.klatsch.model.basic
 

Classes in edu.iu.cnets.klatsch.model.basic that implement Graph
 class BasicGraph
           
 

Methods in edu.iu.cnets.klatsch.model.basic that return Graph
 Graph BasicGraph.actorGraph()
          Returns the subgraph containing only actor-actor edges.
 Graph BasicGraph.actorMemeGraph()
          Returns the subgraph containing only actor-meme and meme-actor edges.
 Graph BasicGraph.component(int n)
           
 Graph BasicGraph.memeGraph()
          Returns the subgraph containing only meme-meme edges.
 Graph BasicGraph.trustedGraph()
           
 

Uses of Graph in edu.iu.cnets.klatsch.model.gephi
 

Classes in edu.iu.cnets.klatsch.model.gephi that implement Graph
 class GephiGraph
           
 

Methods in edu.iu.cnets.klatsch.model.gephi that return Graph
 Graph GephiGraph.actorGraph()
          Returns the subgraph containing only actors and actor-actor edges.
 Graph GephiGraph.actorMemeGraph()
          Returns the subgraph containing only actor-meme and meme-actor edges.
 Graph GephiGraph.component(int n)
           
 Graph GephiGraph.memeGraph()
          Returns the subgraph containing only meme-meme edges.
 Graph GephiGraph.trustedGraph()
          Returns the trusted subset of the graph.