ccvisu
Class GraphEdgeInt

java.lang.Object
  extended by ccvisu.GraphEdgeInt

public class GraphEdgeInt
extends java.lang.Object

Represents an edge between two vertices x and y (given as vertex ids) of weight w.

Version:
$Revision: 1.8 $; $Date: 2006/11/25 10:41:07 $
Author:
Dirk Beyer

Field Summary
 java.lang.String relName
          The name of the relation the egde belongs to
 float w
          Edge weight.
 int x
          Source vertex of edge.
 int y
          Target vertex of edge.
 
Constructor Summary
GraphEdgeInt()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

relName

public java.lang.String relName
The name of the relation the egde belongs to


x

public int x
Source vertex of edge.


y

public int y
Target vertex of edge.


w

public float w
Edge weight.

Constructor Detail

GraphEdgeInt

public GraphEdgeInt()