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
-
Field Summary
-
Constructor Summary
Constructors Constructor Description NotePlayEvent(Block block, Instrument instrument, Note note) -
Method Summary
Modifier and Type Method Description static HandlerListgetHandlerList()HandlerListgetHandlers()InstrumentgetInstrument()Gets theInstrumentto be used.NotegetNote()Gets theNoteto be played.booleanisCancelled()Gets the cancellation state of this event.voidsetCancelled(boolean cancel)Sets the cancellation state of this event.voidsetInstrument(Instrument instrument)Deprecated.no effect on newer Minecraft versionsvoidsetNote(Note note)Deprecated.no effect on newer Minecraft versions
-
Constructor Details
-
Method Details
-
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
Gets theInstrumentto be used.- Returns:
- the Instrument
-
getNote
Gets theNoteto be played.- Returns:
- the Note
-
setInstrument
Deprecated.no effect on newer Minecraft versionsOverrides theInstrumentto be used.- Parameters:
instrument- the Instrument. Has no effect if null.
-
setNote
Deprecated.no effect on newer Minecraft versionsOverrides theNoteto be played.- Parameters:
note- the Note. Has no effect if null.
-
getHandlers
- Specified by:
getHandlersin classEvent
-
getHandlerList
-