ccvisu
Class GraphData

java.lang.Object
  extended by ccvisu.GraphData

public class GraphData
extends java.lang.Object

Contains the representation of a graph. This class is a collection of the data structures needed for layout and transformation processing.

Version:
$Revision: 1.23 $; $Date: 2007/12/15 01:20:50 $
Author:
Dirk Beyer

Field Summary
 java.util.List<GraphEdge> edges
          Edges of type GraphEdgeInt.
 Relation mTuples
          Raw RSF data as extracted from input.
 java.util.Map<java.lang.String,GraphVertex> nameToVertex
          Maps a vertex name to a GraphVertex.
 java.util.List<GraphVertex> vertices
          Maps a vertex id to a GraphVertex.
 
Constructor Summary
GraphData()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

vertices

public java.util.List<GraphVertex> vertices
Maps a vertex id to a GraphVertex.


nameToVertex

public java.util.Map<java.lang.String,GraphVertex> nameToVertex
Maps a vertex name to a GraphVertex.


edges

public java.util.List<GraphEdge> edges
Edges of type GraphEdgeInt. Only used if (inFormat < LAY).


mTuples

public Relation mTuples
Raw RSF data as extracted from input.

Constructor Detail

GraphData

public GraphData()