Bukkit  1.4.7-R1.0
 All Classes Namespaces Files Functions Variables Enumerator Pages
NoteBlock.java
Go to the documentation of this file.
1 package org.bukkit.block;
2 
3 import org.bukkit.Instrument;
4 import org.bukkit.Note;
5 
9 public interface NoteBlock extends BlockState {
10 
16  public Note getNote();
17 
23  public byte getRawNote();
24 
30  public void setNote(Note note);
31 
37  public void setRawNote(byte note);
38 
46  public boolean play();
47 
55  public boolean play(byte instrument, byte note);
56 
65  public boolean play(Instrument instrument, Note note);
66 }