Whitespace + general cleanup

By: Erik Broes <erikbroes@grum.nl>
This commit is contained in:
Bukkit/Spigot
2011-05-14 23:22:54 +02:00
parent 8217ff1836
commit 855f4133b6
216 changed files with 1649 additions and 1637 deletions

View File

@@ -2,52 +2,52 @@ package org.bukkit.block;
import org.bukkit.entity.CreatureType;
/**
* Represents a creature spawner.
*
*
* @author sk89q
* @author Cogito
*/
public interface CreatureSpawner extends BlockState {
/**
* Get the spawner's creature type.
*
*
* @return
*/
public CreatureType getCreatureType();
/**
* Set the spawner creature type.
*
*
* @param mobType
*/
public void setCreatureType(CreatureType creatureType);
/**
* Get the spawner's creature type.
*
*
* @return
*/
public String getCreatureTypeId();
/**
* Set the spawner mob type.
*
*
* @param creatureType
*/
public void setCreatureTypeId(String creatureType);
/**
* Get the spawner's delay.
*
*
* @return
*/
public int getDelay();
/**
* Set the spawner's delay.
*
*
* @param delay
*/
public void setDelay(int delay);