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 Track
, and Tracks
are likewise contained in a Sequence
.
Constructor | Description |
---|---|
MidiEvent |
Constructs a new MidiEvent . |
Modifier and Type | Method | 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 |
Sets the time-stamp for the event, in MIDI ticks. |
public MidiEvent(MidiMessage message, long tick)
MidiEvent
.message
- the MIDI message contained in the eventtick
- the time-stamp for the event, in MIDI tickspublic MidiMessage getMessage()
public void setTick(long tick)
tick
- the new time-stamp, in MIDI tickspublic long getTick()
© 1993, 2023, 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.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/sound/midi/MidiEvent.html