Package apple.audiotoolbox.struct
Class AUMIDIEvent
- java.lang.Object
-
- org.moe.natj.general.NativeObject
-
- org.moe.natj.c.StructObject
-
- apple.audiotoolbox.struct.AUMIDIEvent
-
public final class AUMIDIEvent extends org.moe.natj.c.StructObject
-
-
Constructor Summary
Constructors Modifier Constructor Description AUMIDIEvent()protectedAUMIDIEvent(org.moe.natj.general.Pointer peer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description bytecable()!bytedata(int field_idx)!longeventSampleTime()!byteeventType()!charlength()!org.moe.natj.general.ptr.VoidPtrnext()!bytereserved()!voidsetCable(byte value)!voidsetData(byte value, int field_idx)!voidsetEventSampleTime(long value)!voidsetEventType(byte value)!voidsetLength(char value)!voidsetNext(org.moe.natj.general.ptr.VoidPtr value)!voidsetReserved(byte value)!
-
-
-
Method Detail
-
next
public org.moe.natj.general.ptr.VoidPtr next()
!< The next event in a linked list of events.
-
setNext
public void setNext(org.moe.natj.general.ptr.VoidPtr value)
!< The next event in a linked list of events.
-
eventSampleTime
public long eventSampleTime()
!< The sample time at which the event is scheduled to occur.
-
setEventSampleTime
public void setEventSampleTime(long value)
!< The sample time at which the event is scheduled to occur.
-
eventType
public byte eventType()
!< AURenderEventMIDI or AURenderEventMIDISysEx.
-
setEventType
public void setEventType(byte value)
!< AURenderEventMIDI or AURenderEventMIDISysEx.
-
reserved
public byte reserved()
!< Must be 0.
-
setReserved
public void setReserved(byte value)
!< Must be 0.
-
length
public char length()
!< The number of valid MIDI bytes in the data field.
-
setLength
public void setLength(char value)
!< The number of valid MIDI bytes in the data field.
-
cable
public byte cable()
!< The virtual cable number.
-
setCable
public void setCable(byte value)
!< The virtual cable number.
-
data
public byte data(int field_idx)
!< The bytes of the MIDI event. Running status will not be used.
-
setData
public void setData(byte value, int field_idx)!< The bytes of the MIDI event. Running status will not be used.
-
-