- java.lang.Object
-
- java.util.EventObject
-
- org.jgrapht.event.ConnectedComponentTraversalEvent
-
- All Implemented Interfaces:
Serializable
public class ConnectedComponentTraversalEvent extends EventObject
A traversal event with respect to a connected component.- Author:
- Barak Naveh
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
CONNECTED_COMPONENT_FINISHED
Connected component traversal finished event.static int
CONNECTED_COMPONENT_STARTED
Connected component traversal started event.-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description ConnectedComponentTraversalEvent(Object eventSource, int type)
Creates a new ConnectedComponentTraversalEvent.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getType()
Returns the event type.-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Field Detail
-
CONNECTED_COMPONENT_STARTED
public static final int CONNECTED_COMPONENT_STARTED
Connected component traversal started event.- See Also:
- Constant Field Values
-
CONNECTED_COMPONENT_FINISHED
public static final int CONNECTED_COMPONENT_FINISHED
Connected component traversal finished event.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ConnectedComponentTraversalEvent
public ConnectedComponentTraversalEvent(Object eventSource, int type)
Creates a new ConnectedComponentTraversalEvent.- Parameters:
eventSource
- the source of the event.type
- the type of event.
-
-