Package edu.uci.ics.jung.graph.event
Class GraphEvent.Edge<V,E>
- java.lang.Object
-
- edu.uci.ics.jung.graph.event.GraphEvent<V,E>
-
- edu.uci.ics.jung.graph.event.GraphEvent.Edge<V,E>
-
- Enclosing class:
- GraphEvent<V,E>
public static class GraphEvent.Edge<V,E> extends GraphEvent<V,E>
An event type pertaining to graph edges.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class edu.uci.ics.jung.graph.event.GraphEvent
GraphEvent.Edge<V,E>, GraphEvent.Type, GraphEvent.Vertex<V,E>
-
-
Field Summary
Fields Modifier and Type Field Description protected E
edge
-
Fields inherited from class edu.uci.ics.jung.graph.event.GraphEvent
source, type
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description E
getEdge()
Retrieves the edge associated with this event.java.lang.String
toString()
-
Methods inherited from class edu.uci.ics.jung.graph.event.GraphEvent
getSource, getType
-
-
-
-
Field Detail
-
edge
protected E edge
-
-
Constructor Detail
-
Edge
public Edge(Graph<V,E> source, GraphEvent.Type type, E edge)
Creates a graph event for the specified graph, edge, and type.
-
-
Method Detail
-
getEdge
public E getEdge()
Retrieves the edge associated with this event.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-