org.herac.tuxguitar.player.base
Interface MidiOut
public interface MidiOut
sendSystemReset
void sendSystemReset()
throws MidiPlayerException
- Throws:
MidiPlayerException
sendAllNotesOff
void sendAllNotesOff()
throws MidiPlayerException
- Throws:
MidiPlayerException
sendNoteOn
void sendNoteOn(int channel,
int key,
int velocity)
throws MidiPlayerException
- Throws:
MidiPlayerException
sendNoteOff
void sendNoteOff(int channel,
int key,
int velocity)
throws MidiPlayerException
- Throws:
MidiPlayerException
sendProgramChange
void sendProgramChange(int channel,
int value)
throws MidiPlayerException
- Throws:
MidiPlayerException
sendControlChange
void sendControlChange(int channel,
int controller,
int value)
throws MidiPlayerException
- Throws:
MidiPlayerException
sendPitchBend
void sendPitchBend(int channel,
int value)
throws MidiPlayerException
- Throws:
MidiPlayerException