Previous  Next          Package

Class MIDICompose.SystemExclusive

java.lang.Object
   |
   +----MIDICompose.MIDIObject
           |
           +----MIDICompose.MIDIEvent
                   |
                   +----MIDICompose.SystemExclusive

public class SystemExclusive
extends MIDIEvent

You can find informations on SystemExclusive here.

Variable Index

 o ESCAPED
StatusByte is 0xf7.
 o SYSEX
StatusByte is 0xf0.

Constructor Index

 o SystemExclusive()
Creates new SystemExclusive.
 o SystemExclusive(int, int)
Creates new SystemExclusive with deltaTime and type.

Method Index

 o dataValueAt(int)
Returns value at index.
 o setDataValueAt(int, int)
Sets (or creates) value at index.

Constructors

 o SystemExclusive
 public SystemExclusive()
Creates a new SYSEX-typed SystemExclusive.
 o SystemExclusive
 public SystemExclusive(int deltaTime,
                        int type)
Creates a new SystemExclusive.

Parameters:
deltaTime - any int (>= 0).
type - SYSEX or ESCAPED.

Methods

 o dataValueAt
 public int dataValueAt(int index)
Returns dataValue at index.

Parameters:
index - the position of the value. any int (>= 0).
Returns:
the value at position index. an int between 0 and 127 (or 255).
 o setDataValueAt
 public void setDataValueAt(int value,
                            int index)
Sets dataValue at index.
If ESCAPED-type, value at index = 0 can range from 0 to 255.

Parameters:
value - any int between 0 and 127 (or 255).
index - the position of the value. any int (>= 0).

 Previous  Next          Package