public class MidiEvent extends Object
Sequence object. The duration of a tick is specified by the timing information contained in the MIDI file or
Sequence object.
In Java Sound, MidiEvent objects are typically contained in a , and TrackTracks are likewise contained in a Sequence.
| Constructor and Description |
|---|
MidiEvent(MidiMessage
Constructs a new
MidiEvent.
|
| Modifier and Type | Method and Description |
|---|---|
MidiMessage |
getMessage()
Obtains the MIDI message contained in the event.
|
long |
getTick()
Obtains the time-stamp for the event, in MIDI ticks
|
void |
setTick(long tick)
Sets the time-stamp for the event, in MIDI ticks
|
public MidiEvent(MidiMessagemessage, long tick)
MidiEvent.
message - the MIDI message contained in the event
tick - the time-stamp for the event, in MIDI ticks
public MidiMessagegetMessage()
public void setTick(long tick)
tick - the new time-stamp, in MIDI ticks
public long getTick()