Returns the octave of this note. @return the octave of this note.
()
| 235 | * @return the octave of this note. |
| 236 | */ |
| 237 | public int getOctave() { |
| 238 | return note / Tone.TONES_COUNT; |
| 239 | } |
| 240 | |
| 241 | private byte getToneByte() { |
| 242 | return (byte) (note % Tone.TONES_COUNT); |
no outgoing calls