Many javadoc fixes thanks to Celtic Minstrel

By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot
2011-09-25 02:56:40 +01:00
parent 1968b78a12
commit a8e72bdb91
78 changed files with 380 additions and 335 deletions

View File

@@ -90,8 +90,8 @@ public abstract class Event implements Serializable {
/**
* Represents Player-based events
*
* @see Category.LIVING_ENTITY
*
* @see #LIVING_ENTITY
*/
PLAYER,
/**
@@ -134,8 +134,6 @@ public abstract class Event implements Serializable {
/**
* Provides a lookup for all core events
*
* @see org.bukkit.event.
*/
public enum Type {
@@ -421,13 +419,13 @@ public abstract class Event implements Serializable {
/**
* Called when a piston extends
*
* @see org.bukkit.event.block.PistonExtendEvent
* @see org.bukkit.event.block.BlockPistonExtendEvent
*/
BLOCK_PISTON_EXTEND (Category.BLOCK),
/**
* Called when a piston retracts
*
* @see org.bukkit.event.block.PistonRetractEvent
* @see org.bukkit.event.block.BlockPistonRetractEvent
*/
BLOCK_PISTON_RETRACT (Category.BLOCK),
@@ -529,7 +527,7 @@ public abstract class Event implements Serializable {
/**
* Called when a newly created chunk has been populated.
*
* If your intent is to populate the chunk using this event, please see {@link BlockPopulator}
* If your intent is to populate the chunk using this event, please see {@link org.bukkit.generator.BlockPopulator}
*
* @see org.bukkit.event.world.ChunkPopulateEvent
*/