Interface Event
-
- All Known Implementing Classes:
Event.EdgeAddedEvent
,Event.EdgePropertyChangedEvent
,Event.EdgePropertyRemovedEvent
,Event.EdgeRemovedEvent
,Event.ElementPropertyChangedEvent
,Event.ElementPropertyEvent
,Event.VertexAddedEvent
,Event.VertexPropertyChangedEvent
,Event.VertexPropertyPropertyChangedEvent
,Event.VertexPropertyPropertyRemovedEvent
,Event.VertexPropertyRemovedEvent
,Event.VertexRemovedEvent
public interface Event
- Author:
- Stephen Mallette (http://stephen.genoprime.com)
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Event.EdgeAddedEvent
static class
Event.EdgePropertyChangedEvent
static class
Event.EdgePropertyRemovedEvent
static class
Event.EdgeRemovedEvent
static class
Event.ElementPropertyChangedEvent
A base class forProperty
mutation events.static class
Event.ElementPropertyEvent
A base class forProperty
mutation events.static class
Event.VertexAddedEvent
static class
Event.VertexPropertyChangedEvent
Represents an action where aVertexProperty
is modified on aVertex
.static class
Event.VertexPropertyPropertyChangedEvent
Represents an action where aProperty
is modified on aVertexProperty
.static class
Event.VertexPropertyPropertyRemovedEvent
Represents an action where aProperty
is removed from aVertexProperty
.static class
Event.VertexPropertyRemovedEvent
static class
Event.VertexRemovedEvent
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
fireEvent(Iterator<MutationListener> eventListeners)
AnEvent
publishes its action to all the eventMutationListener
objects.
-
-
-
Method Detail
-
fireEvent
void fireEvent(Iterator<MutationListener> eventListeners)
AnEvent
publishes its action to all the eventMutationListener
objects.
-
-