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

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

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

Fields in edu.iu.cnets.klatsch.lang declared as Edge
(package private)  Edge VEdge.e
          the edge we're encapsulating
 

Constructors in edu.iu.cnets.klatsch.lang with parameters of type Edge
VEdge(Edge e)
          Constructs a new edge.
 

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

Methods in edu.iu.cnets.klatsch.model that return Edge
 Edge Graph.getEdge(Edge e)
           
 

Methods in edu.iu.cnets.klatsch.model that return types with arguments of type Edge
 java.lang.Iterable<Edge> Graph.edges()
           
 java.util.Iterator<Edge> Event.edges()
          Returns an iterator over the edges in this event.
 java.lang.Iterable<Edge> Graph.edgesIn(Node n)
           
 java.lang.Iterable<Edge> Graph.edgesOut(Node n)
           
 

Methods in edu.iu.cnets.klatsch.model with parameters of type Edge
 void Graph.add(Edge e)
           
 int Edge.compareTo(Edge other)
          Implemented for Comparable.
 Edge Graph.getEdge(Edge e)
           
 boolean Graph.hasEdge(Edge e)
           
 double Graph.weight(Edge e)
           
 

Constructors in edu.iu.cnets.klatsch.model with parameters of type Edge
Edge(Edge a, Edge b)
          Builds a new edge by merging two existing edges, which should have the same endpoints.
 

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

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

Fields in edu.iu.cnets.klatsch.model.basic declared as Edge
(package private)  Edge[] BasicEvent.edges
           
 

Fields in edu.iu.cnets.klatsch.model.basic with type parameters of type Edge
(package private)  java.util.SortedSet<Edge> BasicGraph.backEdges
          the set of all backward edges in the graph
(package private)  java.util.SortedSet<Edge> BasicGraph.edges
          the set of all forward edges in the graph
 

Methods in edu.iu.cnets.klatsch.model.basic that return Edge
 Edge BasicGraph.getEdge(Edge e)
          Returns the given edge.
 

Methods in edu.iu.cnets.klatsch.model.basic that return types with arguments of type Edge
 java.util.Iterator<Edge> BasicEvent.edges()
           
 java.lang.Iterable<Edge> BasicGraph.edges()
          Returns an iterable over the edges.
 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.
 

Methods in edu.iu.cnets.klatsch.model.basic with parameters of type Edge
 void BasicGraph.add(Edge e)
          Adds the given edge to the graph.
 Edge BasicGraph.getEdge(Edge e)
          Returns the given edge.
 boolean BasicGraph.hasEdge(Edge e)
          Returns true if the given edge is part of the graph.
 double BasicGraph.weight(Edge e)
          Returns the total weight of this edge.
 

Constructors in edu.iu.cnets.klatsch.model.basic with parameters of type Edge
BasicEdge(Edge e1, Edge e2)
           
BasicEvent(int time, Edge... edges)
           
 

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

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

Methods in edu.iu.cnets.klatsch.model.gephi that return Edge
 Edge GephiGraph.getEdge(Edge e)
          Returns the given edge.
 

Methods in edu.iu.cnets.klatsch.model.gephi that return types with arguments of type Edge
 java.lang.Iterable<Edge> GephiGraph.edges()
          Returns an iterable over the edges.
 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.
 

Methods in edu.iu.cnets.klatsch.model.gephi with parameters of type Edge
 void GephiGraph.add(Edge e)
          Adds the given edge to the graph.
 Edge GephiGraph.getEdge(Edge e)
          Returns the given edge.
 boolean GephiGraph.hasEdge(Edge e)
          Returns true if the given edge is part of the graph.
 double GephiGraph.weight(Edge e)
          Returns the total weight of the given edge.