Pulling all pending Bukkit-JavaDoc changes

By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
Bukkit/Spigot
2013-05-16 04:41:09 -05:00
parent a25fb951f6
commit 1366d7b502
11 changed files with 1063 additions and 102 deletions

View File

@@ -1,31 +1,42 @@
package org.bukkit.event;
import org.bukkit.plugin.PluginManager;
/**
* Represents an event
* Represents an event.
*
* @see PluginManager#callEvent(Event)
* @see PluginManager#registerEvents(Listener,Plugin)
*/
public abstract class Event {
private String name;
private final boolean async;
/**
* The default constructor is defined for cleaner code.
* This constructor assumes the event is synchronous.
* The default constructor is defined for cleaner code. This constructor
* assumes the event is synchronous.
*/
public Event() {
this(false);
}
/**
* This constructor is used to explicitly declare an event as synchronous or asynchronous.
* This constructor is used to explicitly declare an event as synchronous
* or asynchronous.
*
* @param isAsync true indicates the event will fire asynchronously. false by default
* @param isAsync true indicates the event will fire asynchronously, false
* by default from default constructor
*/
public Event(boolean isAsync) {
this.async = isAsync;
}
/**
* @return Name of this event
* Convenience method for providing a user-friendly identifier. By
* default, it is the event's class's {@linkplain Class#getSimpleName()
* simple name}.
*
* @return name of this event
*/
public String getEventName() {
if (name == null) {
@@ -37,17 +48,24 @@ public abstract class Event {
public abstract HandlerList getHandlers();
/**
* Any custom event that should not by synchronized with other events must use the specific constructor.
* These are the caveats of using an asynchronous event:
* <li>The event is never fired from inside code triggered by a synchronous event.
* Attempting to do so results in an {@link java.lang.IllegalStateException}.</li>
* <li>However, asynchronous event handlers may fire synchronous or asynchronous events</li>
* <li>The event may be fired multiple times simultaneously and in any order.</li>
* <li>Any newly registered or unregistered handler is ignored after an event starts execution.</li>
* <li>The handlers for this event may block for any length of time.</li>
* <li>Some implementations may selectively declare a specific event use as asynchronous.
* This behavior should be clearly defined.</li>
* <li>Asynchronous calls are not calculated in the plugin timing system.</li>
* Any custom event that should not by synchronized with other events must
* use the specific constructor. These are the caveats of using an
* asynchronous event:
* <ul>
* <li>The event is never fired from inside code triggered by a
* synchronous event. Attempting to do so results in an {@link
* java.lang.IllegalStateException}.
* <li>However, asynchronous event handlers may fire synchronous or
* asynchronous events
* <li>The event may be fired multiple times simultaneously and in any
* order.
* <li>Any newly registered or unregistered handler is ignored after an
* event starts execution.
* <li>The handlers for this event may block for any length of time.
* <li>Some implementations may selectively declare a specific event use
* as asynchronous. This behavior should be clearly defined.
* <li>Asynchronous calls are not calculated in the plugin timing system.
* </ul>
*
* @return false by default, true if the event fires asynchronously
*/
@@ -58,20 +76,20 @@ public abstract class Event {
public enum Result {
/**
* Deny the event.
* Depending on the event, the action indicated by the event will either not take place or will be reverted.
* Some actions may not be denied.
* Deny the event. Depending on the event, the action indicated by the
* event will either not take place or will be reverted. Some actions
* may not be denied.
*/
DENY,
/**
* Neither deny nor allow the event.
* The server will proceed with its normal handling.
* Neither deny nor allow the event. The server will proceed with its
* normal handling.
*/
DEFAULT,
/**
* Allow / Force the event.
* The action indicated by the event will take place if possible, even if the server would not normally allow the action.
* Some actions may not be allowed.
* Allow / Force the event. The action indicated by the event will
* take place if possible, even if the server would not normally allow
* the action. Some actions may not be allowed.
*/
ALLOW;
}