Pulling all pending Bukkit-JavaDoc changes
By: Edmond Poon <sagaciouszzzz@gmail.com>
This commit is contained in:
@@ -11,7 +11,27 @@ import java.lang.annotation.Target;
|
||||
@Target(ElementType.METHOD)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface EventHandler {
|
||||
|
||||
/**
|
||||
* Define the priority of the event.
|
||||
* <p />
|
||||
* First priority to the last priority executed:
|
||||
* <ol>
|
||||
* <li>LOWEST</li>
|
||||
* <li>LOW</li>
|
||||
* <li>NORMAL</li>
|
||||
* <li>HIGH</li>
|
||||
* <li>HIGHEST</li>
|
||||
* <li>MONITOR</li>
|
||||
* </ol>
|
||||
*/
|
||||
EventPriority priority() default EventPriority.NORMAL;
|
||||
|
||||
/**
|
||||
* Define if the handler ignores a cancelled event.
|
||||
* <p />
|
||||
* If ignoreCancelled is true and the event is cancelled, the method is
|
||||
* not called. Otherwise, the method is always called.
|
||||
*/
|
||||
boolean ignoreCancelled() default false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user