Class CustomBlockBreakEvent

java.lang.Object
org.bukkit.event.Event
org.bukkit.event.player.PlayerEvent
dev.lone.itemsadder.api.Events.CustomBlockBreakEvent
All Implemented Interfaces:
org.bukkit.event.Cancellable

public class CustomBlockBreakEvent extends org.bukkit.event.player.PlayerEvent implements org.bukkit.event.Cancellable
Event called when a custom block is broken.
  • Nested Class Summary

    Nested classes/interfaces inherited from class org.bukkit.event.Event

    org.bukkit.event.Event.Result
  • Field Summary

    Fields inherited from class org.bukkit.event.player.PlayerEvent

    player
  • Constructor Summary

    Constructors
    Constructor
    Description
    CustomBlockBreakEvent(org.bukkit.entity.Player player, org.bukkit.block.Block block, Object internal)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    org.bukkit.block.Block
    Gets the Bukkit Block associated with this CustomBlock.
    org.bukkit.inventory.ItemStack
    Get a clone of the ItemStack of the custom block broken.
    static @NotNull org.bukkit.event.HandlerList
     
    @NotNull org.bukkit.event.HandlerList
     
    Gets the Namespace and ID in the format namespace:id for this CustomBlock.
    boolean
    Gets the cancellation state of this event.
    void
    setCancelled(boolean cancelled)
    Sets the cancellation state of this event.

    Methods inherited from class org.bukkit.event.player.PlayerEvent

    getPlayer

    Methods inherited from class org.bukkit.event.Event

    getEventName, isAsynchronous

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • CustomBlockBreakEvent

      public CustomBlockBreakEvent(org.bukkit.entity.Player player, org.bukkit.block.Block block, Object internal)
  • Method Details

    • isCancelled

      public boolean isCancelled()
      Gets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins
      Specified by:
      isCancelled in interface org.bukkit.event.Cancellable
      Returns:
      true if this event is cancelled
    • setCancelled

      public void setCancelled(boolean cancelled)
      Sets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.
      Specified by:
      setCancelled in interface org.bukkit.event.Cancellable
      Parameters:
      cancelled - true if you wish to cancel this event
    • getHandlers

      @NotNull public @NotNull org.bukkit.event.HandlerList getHandlers()
      Specified by:
      getHandlers in class org.bukkit.event.Event
    • getHandlerList

      @NotNull public static @NotNull org.bukkit.event.HandlerList getHandlerList()
    • getCustomBlockItem

      public org.bukkit.inventory.ItemStack getCustomBlockItem()
      Get a clone of the ItemStack of the custom block broken.
      Returns:
      the ItemStack for the CustomBlock
    • getNamespacedID

      public String getNamespacedID()
      Gets the Namespace and ID in the format namespace:id for this CustomBlock.
      Returns:
      String representing the namespace and ID of the CustomBlock.
    • getBlock

      public org.bukkit.block.Block getBlock()
      Gets the Bukkit Block associated with this CustomBlock.
      Returns:
      Bukkit Block associated with the CustomBlock.