DixShtix

Uses of Interface
com.dixshtix.midi.EventCallback

Packages that use EventCallback
com.dixshtix.midi This package is for the manipulation of Standard Midi Files. 
 

Uses of EventCallback in com.dixshtix.midi
 

Methods in com.dixshtix.midi with parameters of type EventCallback
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.
static byte[] Event.encode(Event[] events, boolean eot_magic, boolean add_eot, boolean running_status, EventCallback unknown_processor)
          Encode an array of events into a format suitable for storing in a MIDI file or a part of a Track.
 void Track.setEvents(Event[] evnts, boolean eot_magic, boolean add_eot, boolean running_status, EventCallback unknown_processor)
          Set the MIDI Events, with options when creating the data.
 

Constructors in com.dixshtix.midi with parameters of type EventCallback
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.
Track(Event[] events, boolean eot_magic, boolean add_eot, boolean running_status, EventCallback unknown_processor)
          Construct a MIDI Track from Midi events, with some processing.
 


DixShtix