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 a
object. The duration of a tick is specified by the timing information contained in the MIDI file or Sequence
Sequence
object.
In Java Sound, MidiEvent
objects are typically contained in a
, and Track
Tracks
are likewise contained in a Sequence
.
public MidiEvent(MidiMessage message, long tick)
Constructs a new MidiEvent
.
message
- the MIDI message contained in the eventtick
- the time-stamp for the event, in MIDI tickspublic MidiMessage getMessage()
Obtains the MIDI message contained in the event.
public void setTick(long tick)
Sets the time-stamp for the event, in MIDI ticks
tick
- the new time-stamp, in MIDI tickspublic long getTick()
Obtains the time-stamp for the event, in MIDI ticks
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.