- java.lang.Object
- 
- javax.sound.midi.MidiEvent
 
- 
 
 public class MidiEvent extends Object MIDI events contain a MIDI message and a corresponding time-stamp expressed in ticks, and can represent the MIDI event information stored in a MIDI file or aSequenceobject. The duration of a tick is specified by the timing information contained in the MIDI file orSequenceobject.In Java Sound, MidiEventobjects are typically contained in aTrack, andTracksare likewise contained in aSequence.
- 
- 
Constructor SummaryConstructors Constructor Description MidiEvent(MidiMessage message, long tick)Constructs a newMidiEvent.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description MidiMessagegetMessage()Obtains the MIDI message contained in the event.longgetTick()Obtains the time-stamp for the event, in MIDI ticks.voidsetTick(long tick)Sets the time-stamp for the event, in MIDI ticks.
 
- 
- 
- 
Constructor Detail- 
MidiEventpublic MidiEvent(MidiMessage message, long tick) Constructs a newMidiEvent.- Parameters:
- message- the MIDI message contained in the event
- tick- the time-stamp for the event, in MIDI ticks
 
 
- 
 - 
Method Detail- 
getMessagepublic MidiMessage getMessage() Obtains the MIDI message contained in the event.- Returns:
- the MIDI message
 
 - 
setTickpublic void setTick(long tick) Sets the time-stamp for the event, in MIDI ticks.- Parameters:
- tick- the new time-stamp, in MIDI ticks
 
 - 
getTickpublic long getTick() Obtains the time-stamp for the event, in MIDI ticks.- Returns:
- the time-stamp for the event, in MIDI ticks
 
 
- 
 
-