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.
-
ESCAPED
- StatusByte is 0xf7.
-
SYSEX
- StatusByte is 0xf0.
-
SystemExclusive()
- Creates new SystemExclusive.
-
SystemExclusive(int, int)
- Creates new SystemExclusive with deltaTime and type.
-
dataValueAt(int)
- Returns value at index.
-
setDataValueAt(int, int)
- Sets (or creates) value at index.
SystemExclusive
public SystemExclusive()
- Creates a new SYSEX-typed SystemExclusive.
SystemExclusive
public SystemExclusive(int deltaTime,
int type)
- Creates a new SystemExclusive.
- Parameters:
- deltaTime - any int (>= 0).
- type - SYSEX or ESCAPED.
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).
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