Pulling all pending Bukkit-JavaDoc changes

A special thanks goes to @aerouk for almost all of the changes found here.

By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
Bukkit/Spigot
2013-12-15 01:07:43 -05:00
parent 800679913f
commit bb50f1a774
310 changed files with 4218 additions and 2904 deletions

View File

@@ -23,19 +23,25 @@ public class InvalidPluginException extends Exception {
}
/**
* Constructs a new InvalidPluginException with the specified detail message and cause.
* Constructs a new InvalidPluginException with the specified detail
* message and cause.
*
* @param message the detail message (which is saved for later retrieval by the getMessage() method).
* @param cause the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
* @param message the detail message (which is saved for later retrieval
* by the getMessage() method).
* @param cause the cause (which is saved for later retrieval by the
* getCause() method). (A null value is permitted, and indicates that
* the cause is nonexistent or unknown.)
*/
public InvalidPluginException(final String message, final Throwable cause) {
super(message, cause);
}
/**
* Constructs a new InvalidPluginException with the specified detail message
* Constructs a new InvalidPluginException with the specified detail
* message
*
* @param message TThe detail message is saved for later retrieval by the getMessage() method.
* @param message TThe detail message is saved for later retrieval by the
* getMessage() method.
*/
public InvalidPluginException(final String message) {
super(message);