All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class jmidi.MidiPortMessage

java.lang.Object
   |
   +----jmidi.MidiPortMessage

public class MidiPortMessage
extends Object
A class for encapsulating MIDI input messages.

A MidiPortMessage contains data received from a MidiPort. The data consists of a single message (or as much as will fit in the MidiPortMessage's data instance variable) and the time the message was received. Time is measured as the number of seconds since MidiPort.open() was called, and should be accurate to within one or two milliseconds.

See Also:
MidiPort

Variable Index

 o messageData
 o timeStamp

Constructor Index

 o MidiPortMessage(int)
creates a MidiPortMessage with space for up to a set number of data bytes

Variables

 o timeStamp
 public double timeStamp
 o messageData
 public byte messageData[]

Constructors

 o MidiPortMessage
 public MidiPortMessage(int len)
creates a MidiPortMessage with space for up to a set number of data bytes


All Packages  Class Hierarchy  This Package  Previous  Next  Index