Pulling all pending Bukkit-JavaDoc changes
By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
package org.bukkit.entity;
|
||||
|
||||
public interface AnimalTamer {
|
||||
|
||||
/**
|
||||
* This is the name of the specified AnimalTamer.
|
||||
*
|
||||
|
||||
@@ -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.
|
||||
*
|
||||
|
||||
@@ -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)}
|
||||
*/
|
||||
|
||||
@@ -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
|
||||
*
|
||||
|
||||
@@ -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
|
||||
*
|
||||
|
||||
@@ -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.
|
||||
*
|
||||
|
||||
@@ -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
|
||||
*
|
||||
|
||||
@@ -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.
|
||||
*
|
||||
|
||||
@@ -7,6 +7,7 @@ import org.bukkit.event.painting.PaintingBreakEvent;
|
||||
* Represents a Painting.
|
||||
*/
|
||||
public interface Painting extends Hanging {
|
||||
|
||||
/**
|
||||
* Get the art on this painting
|
||||
*
|
||||
|
||||
@@ -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.
|
||||
*
|
||||
|
||||
@@ -4,6 +4,7 @@ package org.bukkit.entity;
|
||||
* Represents a Skeleton.
|
||||
*/
|
||||
public interface Skeleton extends Monster {
|
||||
|
||||
/**
|
||||
* Gets the current type of this skeleton.
|
||||
*
|
||||
|
||||
@@ -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.
|
||||
*
|
||||
|
||||
@@ -4,6 +4,7 @@ package org.bukkit.entity;
|
||||
* Represents a Zombie.
|
||||
*/
|
||||
public interface Zombie extends Monster {
|
||||
|
||||
/**
|
||||
* Gets whether the zombie is a baby
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user