public interface SimpleMidiListener extends MidiListener
MidiListener,
RawMidiListener,
StandardMidiListener,
ObjectMidiListener,
MidiBus| Modifier and Type | Method and Description |
|---|---|
void |
controllerChange(int channel,
int number,
int value)
Objects notifying this SimpleMidiListener of a new ControllerChange MIDI message call this method.
|
void |
noteOff(int channel,
int pitch,
int velocity)
Objects notifying this SimpleMidiListener of a new NoteOff MIDI message call this method.
|
void |
noteOn(int channel,
int pitch,
int velocity)
Objects notifying this SimpleMidiListener of a new NoteOn MIDI message call this method.
|
void noteOn(int channel,
int pitch,
int velocity)
channel - the channel on which the NoteOn arrivedpitch - the pitch associated with the NoteOnvelocity - the velocity associated with the NoteOnvoid noteOff(int channel,
int pitch,
int velocity)
channel - the channel on which the NoteOff arrivedpitch - the pitch associated with the NoteOffvelocity - the velocity associated with the NoteOffvoid controllerChange(int channel,
int number,
int value)
channel - the channel on which the ContollerChange arrivednumber - the controller number associated with the ContollerChangevalue - the controller value associated with the ContollerChange