Small javadoc cleanup

By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot
2011-10-10 21:58:44 +01:00
parent 96063a2b4d
commit 429eb80d6e
46 changed files with 1 additions and 140 deletions

View File

@@ -3,7 +3,5 @@ package org.bukkit.entity;
/**
* Represents an Animal.
*
* @author Cogito
*
*/
public interface Animals extends Creature {}

View File

@@ -2,8 +2,6 @@ package org.bukkit.entity;
/**
* Represents a boat entity.
*
* @author sk89q
*/
public interface Boat extends Vehicle {

View File

@@ -1,12 +1,6 @@
/**
*
*/
package org.bukkit.entity;
/**
* Represents a Chicken.
*
* @author Cogito
*
*/
public interface Chicken extends Animals {}

View File

@@ -1,12 +1,6 @@
/**
*
*/
package org.bukkit.entity;
/**
* Represents a Cow.
*
* @author Cogito
*
*/
public interface Cow extends Animals {}

View File

@@ -1,12 +1,6 @@
/**
*
*/
package org.bukkit.entity;
/**
* Represents Falling Sand.
*
* @author Cogito
*
*/
public interface FallingSand extends Entity {}

View File

@@ -1,12 +1,6 @@
/**
*
*/
package org.bukkit.entity;
/**
* Represents a Flying Entity.
*
* @author Cogito
*
*/
public interface Flying extends LivingEntity {}

View File

@@ -1,12 +1,6 @@
/**
*
*/
package org.bukkit.entity;
/**
* Represents a Ghast.
*
* @author Cogito
*
*/
public interface Ghast extends Flying {}

View File

@@ -1,12 +1,6 @@
/**
*
*/
package org.bukkit.entity;
/**
* Represents a Giant.
*
* @author Cogito
*
*/
public interface Giant extends Monster {}

View File

@@ -4,9 +4,6 @@ import org.bukkit.inventory.ItemStack;
/**
* Represents an Item.
*
* @author Cogito
*
*/
public interface Item extends Entity {

View File

@@ -2,8 +2,6 @@ package org.bukkit.entity;
/**
* Represents an instance of a lightning strike. May or may not do damage.
*
* @author sk89q
*/
public interface LightningStrike extends Weather {

View File

@@ -4,8 +4,6 @@ import org.bukkit.util.Vector;
/**
* Represents a minecart entity.
*
* @author sk89q
*/
public interface Minecart extends Vehicle {

View File

@@ -1,12 +1,6 @@
/**
*
*/
package org.bukkit.entity;
/**
* Represents a Monster.
*
* @author Cogito
*
*/
public interface Monster extends Creature {}

View File

@@ -2,7 +2,5 @@ package org.bukkit.entity;
/**
* Represents a powered minecart.
*
* @author sk89q
*/
public interface PoweredMinecart extends Minecart {}

View File

@@ -1,15 +1,9 @@
/**
*
*/
package org.bukkit.entity;
import org.bukkit.material.Colorable;
/**
* Represents a Sheep.
*
* @author Cogito
*
*/
public interface Sheep extends Animals, Colorable {

View File

@@ -1,12 +1,6 @@
/**
*
*/
package org.bukkit.entity;
/**
* Represents a Skeleton.
*
* @author Cogito
*
*/
public interface Skeleton extends Monster {}

View File

@@ -1,13 +1,7 @@
/**
*
*/
package org.bukkit.entity;
/**
* Represents a Slime.
*
* @author Cogito
*
*/
public interface Slime extends LivingEntity {

View File

@@ -1,12 +1,6 @@
/**
*
*/
package org.bukkit.entity;
/**
* Represents a Squid.
*
* @author Cogito
*
*/
public interface Squid extends WaterMob {}

View File

@@ -4,8 +4,6 @@ import org.bukkit.inventory.Inventory;
/**
* Represents a storage minecart.
*
* @author sk89q
*/
public interface StorageMinecart extends Minecart {

View File

@@ -4,8 +4,6 @@ import org.bukkit.util.Vector;
/**
* Represents a vehicle entity.
*
* @author sk89q
*/
public interface Vehicle extends Entity {

View File

@@ -1,11 +1,6 @@
/**
*
*/
package org.bukkit.entity;
/**
* Represents a Water Mob
* @author Cogito
*
*/
public interface WaterMob extends Creature {}

View File

@@ -2,8 +2,5 @@ package org.bukkit.entity;
/**
* Represents a Zombie.
*
* @author Cogito
*
*/
public interface Zombie extends Monster {}