Many javadoc fixes thanks to Celtic Minstrel

This commit is contained in:
Dinnerbone
2011-09-25 02:56:40 +01:00
parent 9a5665137d
commit e6c273e8b0
78 changed files with 380 additions and 335 deletions

View File

@@ -33,6 +33,7 @@ public class EntityExplodeEvent extends EntityEvent implements Cancellable {
/**
* Returns the list of blocks that would have been removed or were
* removed from the explosion event.
* @return All blown-up blocks
*/
public List<Block> blockList() {
return blocks;
@@ -42,6 +43,7 @@ public class EntityExplodeEvent extends EntityEvent implements Cancellable {
* Returns the location where the explosion happened.
* It is not possible to get this value from the Entity as
* the Entity no longer exists in the world.
* @return The location of the explosion
*/
public Location getLocation() {
return location;
@@ -50,7 +52,7 @@ public class EntityExplodeEvent extends EntityEvent implements Cancellable {
/**
* Returns the percentage of blocks to drop from this explosion
*
* @return
* @return The yield.
*/
public float getYield() {
return yield;
@@ -58,6 +60,7 @@ public class EntityExplodeEvent extends EntityEvent implements Cancellable {
/**
* Sets the percentage of blocks to drop from this explosion
* @param yield The new yield percentage
*/
public void setYield(float yield) {
this.yield = yield;