Class GraphEdge

java.lang.Object
weka.gui.graphvisualizer.GraphEdge

public class GraphEdge extends Object
This class represents an edge in the graph
Version:
$Revision: 8034 $ - 23 Apr 2003 - Initial version (Ashraf M. Kibriya)
Author:
Ashraf M. Kibriya (amk14@cs.waikato.ac.nz)
  • Field Details

    • src

      public int src
      The index of source node in Nodes vector
    • dest

      public int dest
      The index of target node in Nodes vector
    • type

      public int type
      The type of Edge
    • srcLbl

      public String srcLbl
      Label of source node
    • destLbl

      public String destLbl
      Label of target node
  • Constructor Details

    • GraphEdge

      public GraphEdge(int s, int d, int t)
    • GraphEdge

      public GraphEdge(int s, int d, int t, String sLbl, String dLbl)
  • Method Details