Uses of Class
edu.iu.cnets.klatsch.model.Node

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

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

Methods in edu.iu.cnets.klatsch.feed with parameters of type Node
 java.lang.String Random.actorLabel(Node n)
          Standard interface function.
 java.lang.String Random.memeLabel(Node n)
          Standard interface function.
 

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

Fields in edu.iu.cnets.klatsch.lang declared as Node
(package private)  Node VNode.n
          the node we're encapsulating
 

Constructors in edu.iu.cnets.klatsch.lang with parameters of type Node
VNode(Node n)
          Constructs a new node.
 

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

Fields in edu.iu.cnets.klatsch.model declared as Node
protected  Node Edge.dst
          the destination node
protected  Node Edge.src
          the source node
 

Methods in edu.iu.cnets.klatsch.model that return Node
 Node Edge.dst()
          Returns the destination node for this edge.
 Node Graph.getNode(Node n)
           
 Node Edge.src()
          Returns the source node for this edge.
 

Methods in edu.iu.cnets.klatsch.model that return types with arguments of type Node
 java.lang.Iterable<Node> Graph.nodes()
           
 

Methods in edu.iu.cnets.klatsch.model with parameters of type Node
 int Graph.dstK(Node n)
           
 double Graph.dstS(Node n)
           
 java.lang.Iterable<Edge> Graph.edgesIn(Node n)
           
 java.lang.Iterable<Edge> Graph.edgesOut(Node n)
           
 Node Graph.getNode(Node n)
           
 boolean Graph.hasNode(Node n)
           
 int Graph.srcK(Node n)
           
 double Graph.srcS(Node n)
           
 

Constructors in edu.iu.cnets.klatsch.model with parameters of type Node
Edge(Node src, Node dst)
          Simplied constructor with a default weight of 1.0, that is completely trusted.
Edge(Node src, Node dst, double weight, double trust)
          Simplified constructor that uses "now" as a timestamp.
Edge(Node src, Node dst, int startTime, int endTime, double weight, double trust)
          Constructor specifying all fields.
 

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

Subclasses of Node in edu.iu.cnets.klatsch.model.basic
 class BasicNode
          This is a simple implementation of Node for feed types that don't need any advanced features.
 

Fields in edu.iu.cnets.klatsch.model.basic with type parameters of type Node
(package private)  java.util.SortedSet<Node> BasicGraph.nodes
          the set of all nodes in the graph
 

Methods in edu.iu.cnets.klatsch.model.basic that return Node
 Node BasicGraph.getNode(Node n)
          Returns the given node.
 

Methods in edu.iu.cnets.klatsch.model.basic that return types with arguments of type Node
 java.lang.Iterable<Node> BasicGraph.nodes()
          Returns an iterable over the nodes.
 

Methods in edu.iu.cnets.klatsch.model.basic with parameters of type Node
 int BasicNode.compareTo(Node other)
           
 int BasicGraph.dstK(Node n)
          Returns the in-degree of the given node.
 double BasicGraph.dstS(Node n)
          Returns the in-strength of the given node.
 java.lang.Iterable<Edge> BasicGraph.edgesIn(Node n)
          Returns an iterable over the edges with this node as a destination.
 java.lang.Iterable<Edge> BasicGraph.edgesOut(Node n)
          Returns an iterable over the edges with this node as a source.
 Node BasicGraph.getNode(Node n)
          Returns the given node.
 boolean BasicGraph.hasNode(Node n)
          Returns true if the given node is part of the graph.
 int BasicGraph.srcK(Node n)
          Returns the out-degree of the given node.
 double BasicGraph.srcS(Node n)
          Returns the out-strength of the given node.
 

Constructors in edu.iu.cnets.klatsch.model.basic with parameters of type Node
BasicEdge(Node src, Node dst)
           
BasicEdge(Node src, Node dst, double weight, double trust)
           
BasicEdge(Node src, Node dst, int startTime, int endTime, double weight, double trust)
           
 

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

Subclasses of Node in edu.iu.cnets.klatsch.model.gephi
 class GephiNode
          This is an implementation of Node for use with the Gephi toolkit.
 

Methods in edu.iu.cnets.klatsch.model.gephi that return Node
 Node GephiGraph.getNode(Node n)
          Returns the given node.
 

Methods in edu.iu.cnets.klatsch.model.gephi that return types with arguments of type Node
 java.lang.Iterable<Node> GephiGraph.nodes()
          Returns an iterable over the nodes.
 

Methods in edu.iu.cnets.klatsch.model.gephi with parameters of type Node
 int GephiNode.compareTo(Node other)
           
 int GephiGraph.dstK(Node n)
          Returns the in-degree of the given node.
 double GephiGraph.dstS(Node n)
          Returns the in-strength of the given node.
 java.lang.Iterable<Edge> GephiGraph.edgesIn(Node n)
          Returns an iterable over the edges with this node as a destination.
 java.lang.Iterable<Edge> GephiGraph.edgesOut(Node n)
          Returns an iterable over the edges with this node as a source.
 Node GephiGraph.getNode(Node n)
          Returns the given node.
 boolean GephiGraph.hasNode(Node n)
          Returns true if the given node is part of the graph.
 int GephiGraph.srcK(Node n)
          Returns the out-degree of the given node.
 double GephiGraph.srcS(Node n)
          Returns the out-strength of the given node.