Pulling all pending Bukkit-JavaDoc changes

A special thanks goes to @aerouk for almost all of the changes found here.
This commit is contained in:
Wesley Wolfe
2013-12-15 01:07:43 -05:00
parent ad1f1c2c75
commit 8a1dbc38da
310 changed files with 4218 additions and 2904 deletions

View File

@@ -23,7 +23,8 @@ public class FoodLevelChangeEvent extends EntityEvent implements Cancellable {
}
/**
* Gets the resultant food level that the entity involved in this event should be set to.
* Gets the resultant food level that the entity involved in this event
* should be set to.
* <p>
* Where 20 is a full food bar and 0 is an empty one.
*
@@ -34,9 +35,11 @@ public class FoodLevelChangeEvent extends EntityEvent implements Cancellable {
}
/**
* Sets the resultant food level that the entity involved in this event should be set to
* Sets the resultant food level that the entity involved in this event
* should be set to
*
* @param level the resultant food level that the entity involved in this event should be set to
* @param level the resultant food level that the entity involved in this
* event should be set to
*/
public void setFoodLevel(int level) {
if (level > 20) level = 20;