org.herac.tuxguitar.player.base
Interface MidiOut


public interface MidiOut


Method Summary
 void sendAllNotesOff()
           
 void sendControlChange(int channel, int controller, int value)
           
 void sendNoteOff(int channel, int key, int velocity)
           
 void sendNoteOn(int channel, int key, int velocity)
           
 void sendPitchBend(int channel, int value)
           
 void sendProgramChange(int channel, int value)
           
 void sendSystemReset()
           
 

Method Detail

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