Pulling all pending Bukkit-JavaDoc changes

By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
Bukkit/Spigot
2013-09-10 21:02:53 -05:00
parent f60d6710d5
commit 67439804f4
61 changed files with 219 additions and 43 deletions

View File

@@ -1,6 +1,7 @@
package org.bukkit.entity;
public interface AnimalTamer {
/**
* This is the name of the specified AnimalTamer.
*

View File

@@ -4,6 +4,7 @@ package org.bukkit.entity;
* Represents a single part of a {@link ComplexLivingEntity}
*/
public interface ComplexEntityPart extends Entity {
/**
* Gets the parent {@link ComplexLivingEntity} of this part.
*

View File

@@ -14,10 +14,11 @@ import org.bukkit.Location;
import org.bukkit.World;
public enum EntityType {
// These strings MUST match the strings in nms.EntityTypes and are case sensitive.
/**
* An item resting on the ground.
*
* <p>
* Spawn with {@link World#dropItem(Location, ItemStack)}
* or {@link World#dropItemNaturally(Location, ItemStack)}
*/

View File

@@ -4,6 +4,7 @@ package org.bukkit.entity;
* Represents an Experience Orb.
*/
public interface ExperienceOrb extends Entity {
/**
* Gets how much experience is contained within this orb
*

View File

@@ -4,6 +4,7 @@ package org.bukkit.entity;
* A representation of an explosive entity
*/
public interface Explosive extends Entity {
/**
* Set the radius affected by this explosive's explosion
*

View File

@@ -6,6 +6,7 @@ import org.bukkit.util.Vector;
* Represents a Fireball.
*/
public interface Fireball extends Projectile, Explosive {
/**
* Fireballs fly straight and do not take setVelocity(...) well.
*

View File

@@ -3,6 +3,7 @@ package org.bukkit.entity;
import org.bukkit.inventory.meta.FireworkMeta;
public interface Firework extends Entity {
/**
* Get a copy of the fireworks meta
*

View File

@@ -5,6 +5,7 @@ package org.bukkit.entity;
* A wild tameable cat
*/
public interface Ocelot extends Animals, Tameable {
/**
* Gets the current type of this cat.
*

View File

@@ -7,6 +7,7 @@ import org.bukkit.event.painting.PaintingBreakEvent;
* Represents a Painting.
*/
public interface Painting extends Hanging {
/**
* Get the art on this painting
*

View File

@@ -4,6 +4,7 @@ package org.bukkit.entity;
* Represents a Pig Zombie.
*/
public interface PigZombie extends Zombie {
/**
* Get the pig zombie's current anger level.
*

View File

@@ -4,6 +4,7 @@ package org.bukkit.entity;
* Represents a Skeleton.
*/
public interface Skeleton extends Monster {
/**
* Gets the current type of this skeleton.
*

View File

@@ -4,6 +4,7 @@ package org.bukkit.entity;
* Represents a Primed TNT.
*/
public interface TNTPrimed extends Explosive {
/**
* Set the number of ticks until the TNT blows up after being primed.
*

View File

@@ -4,6 +4,7 @@ package org.bukkit.entity;
* Represents a Zombie.
*/
public interface Zombie extends Monster {
/**
* Gets whether the zombie is a baby
*