Package dev.lone.itemsadder.api.Events
Class FurniturePlaceEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.player.PlayerEvent
dev.lone.itemsadder.api.Events.FurniturePlaceEvent
- All Implemented Interfaces:
org.bukkit.event.Cancellable
@Deprecated
public class FurniturePlaceEvent
extends org.bukkit.event.player.PlayerEvent
implements org.bukkit.event.Cancellable
Deprecated.
Event called when a player tries to place a furniture item.
-
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
ConstructorsConstructorDescriptionFurniturePlaceEvent
(@NotNull org.bukkit.entity.Player who) Deprecated.Constructor of the event -
Method Summary
Modifier and TypeMethodDescriptionstatic @NotNull org.bukkit.event.HandlerList
Deprecated.Static utility method to get the handler list of this event.@NotNull org.bukkit.event.HandlerList
Deprecated.Gets the handler list of this event.@Nullable String
Deprecated.Gets the namespaced ID of the item that the player is trying to place.boolean
Deprecated.Gets the cancellation state of this event.void
setCancelled
(boolean cancelled) Deprecated.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
-
Constructor Details
-
FurniturePlaceEvent
public FurniturePlaceEvent(@NotNull @NotNull org.bukkit.entity.Player who) Deprecated.Constructor of the event- Parameters:
who
- Player who is trying to place the item.
-
-
Method Details
-
isCancelled
public boolean isCancelled()Deprecated.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 interfaceorg.bukkit.event.Cancellable
- Returns:
- true if this event is cancelled
-
setCancelled
public void setCancelled(boolean cancelled) Deprecated.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 interfaceorg.bukkit.event.Cancellable
- Parameters:
cancelled
- true if you wish to cancel this event
-
getNamespacedID
Deprecated.Gets the namespaced ID of the item that the player is trying to place.- Returns:
- Namespaced ID of the item.
-
getHandlers
@NotNull public @NotNull org.bukkit.event.HandlerList getHandlers()Deprecated.Gets the handler list of this event.- Specified by:
getHandlers
in classorg.bukkit.event.Event
- Returns:
- Handler list of this event.
-
getHandlerList
@NotNull public static @NotNull org.bukkit.event.HandlerList getHandlerList()Deprecated.Static utility method to get the handler list of this event.- Returns:
- Handler list of this event.
-