Class CampfireMock
java.lang.Object
be.seeseemelk.mockbukkit.block.state.BlockStateMock
be.seeseemelk.mockbukkit.block.state.TileStateMock
be.seeseemelk.mockbukkit.block.state.CampfireMock
- All Implemented Interfaces:
BlockState
,Campfire
,TileState
,Metadatable
,PersistentDataHolder
Mock implementation of a
Campfire
.- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
CampfireMock
(@NotNull CampfireMock state) Constructs a newCampfireMock
by cloning the data from an existing one.protected
CampfireMock
(@NotNull Block block) Constructs a newCampfireMock
for the providedBlock
.CampfireMock
(@NotNull Material material) Constructs a newCampfireMock
for the providedMaterial
. -
Method Summary
Modifier and TypeMethodDescriptionint
getCookTime
(int index) int
getCookTimeTotal
(int index) @Nullable ItemStack
getItem
(int index) int
getSize()
@NotNull BlockState
This returns a copy of thisBlockStateMock
.boolean
isCookingDisabled
(int index) void
setCookTime
(int index, int cookTime) void
setCookTimeTotal
(int index, int cookTimeTotal) void
void
boolean
startCooking
(int index) void
boolean
stopCooking
(int index) Methods inherited from class be.seeseemelk.mockbukkit.block.state.TileStateMock
getPersistentDataContainer, isSnapshot
Methods inherited from class be.seeseemelk.mockbukkit.block.state.BlockStateMock
checkType, checkType, checkType, checkType, equals, getBlock, getBlockData, getChunk, getData, getDrops, getDrops, getDrops, getLightLevel, getLocation, getLocation, getMetadata, getRawData, getType, getWorld, getX, getY, getZ, hashCode, hasMetadata, isCollidable, isPlaced, mockState, removeMetadata, setBlockData, setData, setMetadata, setRawData, setType, update, update, update
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.bukkit.block.BlockState
getBlock, getBlockData, getChunk, getData, getDrops, getDrops, getDrops, getLightLevel, getLocation, getLocation, getRawData, getType, getWorld, getX, getY, getZ, isCollidable, isPlaced, setBlockData, setData, setRawData, setType, update, update, update
Methods inherited from interface org.bukkit.metadata.Metadatable
getMetadata, hasMetadata, removeMetadata, setMetadata
Methods inherited from interface org.bukkit.block.TileState
getPersistentDataContainer, isSnapshot
-
Constructor Details
-
CampfireMock
- Parameters:
material
- The material this state is for.
-
CampfireMock
- Parameters:
block
- The block this state is for.
-
CampfireMock
Constructs a newCampfireMock
by cloning the data from an existing one.- Parameters:
state
- The state to clone.
-
-
Method Details
-
getSnapshot
Description copied from class:BlockStateMock
This returns a copy of thisBlockStateMock
. Inheritents of this class should override this method!- Specified by:
getSnapshot
in classTileStateMock
- Returns:
- A snapshot of this
BlockStateMock
.
-
getSize
public int getSize() -
getItem
-
setItem
-
getCookTime
public int getCookTime(int index) - Specified by:
getCookTime
in interfaceCampfire
-
setCookTime
public void setCookTime(int index, int cookTime) - Specified by:
setCookTime
in interfaceCampfire
-
getCookTimeTotal
public int getCookTimeTotal(int index) - Specified by:
getCookTimeTotal
in interfaceCampfire
-
setCookTimeTotal
public void setCookTimeTotal(int index, int cookTimeTotal) - Specified by:
setCookTimeTotal
in interfaceCampfire
-
stopCooking
public void stopCooking()- Specified by:
stopCooking
in interfaceCampfire
-
startCooking
public void startCooking()- Specified by:
startCooking
in interfaceCampfire
-
stopCooking
public boolean stopCooking(int index) - Specified by:
stopCooking
in interfaceCampfire
-
startCooking
public boolean startCooking(int index) - Specified by:
startCooking
in interfaceCampfire
-
isCookingDisabled
public boolean isCookingDisabled(int index) - Specified by:
isCookingDisabled
in interfaceCampfire
-