Annotation Type LaunchesProjectEvent
-
@Retention(RUNTIME) @Target(METHOD) public @interface LaunchesProjectEvent
Annotation to be put on methods which should create aProjectEvent
. Value must be some subclass ofProjectEvent
to notify the event handler which event should be created.
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.Class<? extends ProjectEvent>
value
The type ofProjectEvent
that should be created on this annotated method
-
-
-
Element Detail
-
value
java.lang.Class<? extends ProjectEvent> value
The type ofProjectEvent
that should be created on this annotated method- Returns:
- the type of
ProjectEvent
that should be created on the annotated method.
-
-