Class BlockBreakDomainEvent
- java.lang.Object
-
- org.bukkit.event.Event
-
- work.torp.domain.api.events.block.BaseBlock
-
- work.torp.domain.api.events.block.BlockBreakDomainEvent
-
- All Implemented Interfaces:
org.bukkit.event.Cancellable
public final class BlockBreakDomainEvent extends BaseBlock implements org.bukkit.event.Cancellable
-
-
Constructor Summary
Constructors Constructor Description BlockBreakDomainEvent(work.torp.domain.domainblock.DomainBlock domainBlock, org.bukkit.block.Block block, org.bukkit.entity.Player player)BlockBreakDomainEvent This event is called when a block is broken inside a Domain field
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCancelReason()work.torp.domain.domainblock.DomainBlockgetDomainBlock()org.bukkit.entity.PlayergetPlayer()booleanisCancelled()voidsetCancelled(boolean cancel)voidsetCancelReason(java.lang.String cancelReason)-
Methods inherited from class work.torp.domain.api.events.block.BaseBlock
getBlock, getHandlerList, getHandlers, logBaseValues
-
-
-
-
Constructor Detail
-
BlockBreakDomainEvent
public BlockBreakDomainEvent(work.torp.domain.domainblock.DomainBlock domainBlock, org.bukkit.block.Block block, org.bukkit.entity.Player player)BlockBreakDomainEvent This event is called when a block is broken inside a Domain field- Parameters:
domainBlock- The domain block where the block is being brokenblock- The block that is being brokenplayer- The player that broke the block (null if not a player)
-
-
Method Detail
-
getDomainBlock
public work.torp.domain.domainblock.DomainBlock getDomainBlock()
-
getPlayer
public org.bukkit.entity.Player getPlayer()
-
getCancelReason
public java.lang.String getCancelReason()
-
setCancelReason
public void setCancelReason(java.lang.String cancelReason)
-
isCancelled
public boolean isCancelled()
- Specified by:
isCancelledin interfaceorg.bukkit.event.Cancellable
-
setCancelled
public void setCancelled(boolean cancel)
- Specified by:
setCancelledin interfaceorg.bukkit.event.Cancellable
-
-