1 25 41 package org.jgrapht.event; 42 43 import java.util.*; 44 45 46 52 public class EdgeTraversalEvent<V, E> 53 extends EventObject 54 { 55 56 58 private static final long serialVersionUID = 4050768173789820979L; 59 60 62 65 protected E edge; 66 67 69 75 public EdgeTraversalEvent(Object eventSource, E edge) 76 { 77 super(eventSource); 78 this.edge = edge; 79 } 80 81 83 88 public E getEdge() 89 { 90 return edge; 91 } 92 } 93 | Popular Tags |