package Sequenic.T2ext.Instrumenter; import java.io.Serializable; /** * Representing an edge in a graph. * * @author Wishnu Prasetya * */ public class Edge implements Serializable { private static final long serialVersionUID = 1L; public Element from ; public Element to ; public Edge(Element fr, Element t) { from = fr; to = t; } }