Uses of Class
edu.ucla.stat.SOCR.touchgraph.graphlayout.graphelements.GraphEltSet

Packages that use GraphEltSet
edu.ucla.stat.SOCR.touchgraph.graphlayout   
edu.ucla.stat.SOCR.touchgraph.graphlayout.graphelements   
 

Uses of GraphEltSet in edu.ucla.stat.SOCR.touchgraph.graphlayout
 

Methods in edu.ucla.stat.SOCR.touchgraph.graphlayout with parameters of type GraphEltSet
 void TGPanel.setGraphEltSet(GraphEltSet ges)
           
 

Uses of GraphEltSet in edu.ucla.stat.SOCR.touchgraph.graphlayout.graphelements
 

Subclasses of GraphEltSet in edu.ucla.stat.SOCR.touchgraph.graphlayout.graphelements
 class Locality
          Locality: A way of representing a subset of a larger set of nodes.
 class VisibleLocality
          VisibleLocality: Extends Locality to spefically handle the Nodes + Edges that are visible on screen.
 

Fields in edu.ucla.stat.SOCR.touchgraph.graphlayout.graphelements declared as GraphEltSet
protected  GraphEltSet Locality.completeEltSet
           
 

Methods in edu.ucla.stat.SOCR.touchgraph.graphlayout.graphelements that return GraphEltSet
 GraphEltSet Locality.getCompleteEltSet()
           
 

Methods in edu.ucla.stat.SOCR.touchgraph.graphlayout.graphelements with parameters of type GraphEltSet
static java.util.Hashtable GESUtils.calculateDistances(GraphEltSet ges, Node focusNode, int radius)
           
static java.util.Hashtable GESUtils.calculateDistances(GraphEltSet ges, Node focusNode, int radius, int maxAddEdgeCount, int maxExpandEdgeCount, boolean unidirectional)
          Returns a hashtable of Node-Integer pairs, where integers are the minimum distance from the focusNode to any given Node, and the Nodes in the Hashtable are all within radius distance from the focusNode.
static java.util.Hashtable GESUtils.getLargestConnectedSubgraph(GraphEltSet ges)
          A temporary function that returns the largest connected subgraph in a GraphEltSet.
 

Constructors in edu.ucla.stat.SOCR.touchgraph.graphlayout.graphelements with parameters of type GraphEltSet
Locality(GraphEltSet ges)
          Constructor with GraphEltSet ges.
VisibleLocality(GraphEltSet ges)