DixShtix

Uses of Class
com.dixshtix.midi.EventType

Packages that use EventType
com.dixshtix.midi This package is for the manipulation of Standard Midi Files. 
com.dixshtix.niff This package is for the manipulation of (Musical) Notation Interchange File Format (NIFF) Files. 
 

Uses of EventType in com.dixshtix.midi
 

Fields in com.dixshtix.midi declared as EventType
(package private)  EventType Event.type_name
          The type of Events in a MIDI file differ from those on the wire.
 

Methods in com.dixshtix.midi that return EventType
 EventType Event.getType()
          Accessor Method.
 

Methods in com.dixshtix.midi with parameters of type EventType
static Event[] Event.decode(byte[] data, boolean eot_magic, EventType[] incl, EventType[] excl, EventCallback pre_processor, EventCallback post_processor)
          Decode an opaque array of bytes into Event objects.
 

Constructors in com.dixshtix.midi with parameters of type EventType
Event(EventType et, int delta_time, java.lang.Object[] parameters)
          Initializer.
Track(byte[] data, boolean eot_magic, EventType[] incl, EventType[] excl, EventCallback pre_processor)
          Construct a MIDI Track from Midi data bytes, with some pre-processing.
 

Uses of EventType in com.dixshtix.niff
 

Methods in com.dixshtix.niff with parameters of type EventType
 void ToMidi.addEvent(java.util.List events, int time, EventType type, java.lang.Object[] params, boolean prepend)
           
 


DixShtix