Package org.bukkit.event.block
Class NotePlayEvent
- java.lang.Object
-
- org.bukkit.event.Event
-
- org.bukkit.event.block.BlockEvent
-
- org.bukkit.event.block.NotePlayEvent
-
- All Implemented Interfaces:
Cancellable
public class NotePlayEvent extends BlockEvent implements Cancellable
Called when a note block is being played through player interaction or a redstone current.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result
-
-
Field Summary
-
Fields inherited from class org.bukkit.event.block.BlockEvent
block
-
-
Constructor Summary
Constructors Constructor Description NotePlayEvent(@NotNull Block block, @NotNull Instrument instrument, @NotNull Note note)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static @NotNull HandlerListgetHandlerList()@NotNull HandlerListgetHandlers()@NotNull InstrumentgetInstrument()Gets theInstrumentto be used.@NotNull NotegetNote()Gets theNoteto be played.booleanisCancelled()Gets the cancellation state of this event.voidsetCancelled(boolean cancel)Sets the cancellation state of this event.voidsetInstrument(@NotNull Instrument instrument)Deprecated.no effect on newer Minecraft versionsvoidsetNote(@NotNull Note note)Deprecated.no effect on newer Minecraft versions-
Methods inherited from class org.bukkit.event.block.BlockEvent
getBlock
-
Methods inherited from class org.bukkit.event.Event
getEventName, isAsynchronous
-
-
-
-
Constructor Detail
-
NotePlayEvent
public NotePlayEvent(@NotNull @NotNull Block block, @NotNull @NotNull Instrument instrument, @NotNull @NotNull Note note)
-
-
Method Detail
-
isCancelled
public boolean isCancelled()
Description copied from interface:CancellableGets 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:
isCancelledin interfaceCancellable- Returns:
- true if this event is cancelled
-
setCancelled
public void setCancelled(boolean cancel)
Description copied from interface:CancellableSets 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:
setCancelledin interfaceCancellable- Parameters:
cancel- true if you wish to cancel this event
-
getInstrument
@NotNull public @NotNull Instrument getInstrument()
Gets theInstrumentto be used.- Returns:
- the Instrument
-
setInstrument
@Deprecated public void setInstrument(@NotNull @NotNull Instrument instrument)
Deprecated.no effect on newer Minecraft versionsOverrides theInstrumentto be used.- Parameters:
instrument- the Instrument. Has no effect if null.
-
setNote
@Deprecated public void setNote(@NotNull @NotNull Note note)
Deprecated.no effect on newer Minecraft versionsOverrides theNoteto be played.- Parameters:
note- the Note. Has no effect if null.
-
getHandlers
@NotNull public @NotNull HandlerList getHandlers()
- Specified by:
getHandlersin classEvent
-
getHandlerList
@NotNull public static @NotNull HandlerList getHandlerList()
-
-