DixShtix

Uses of Class
com.dixshtix.midi.Event

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

Uses of Event in com.dixshtix.midi
 

Fields in com.dixshtix.midi declared as Event
(package private)  Event[] Track.events
          Musical (MIDI) events.
 

Methods in com.dixshtix.midi that return Event
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.
 Event EventCallback.getEvent(int index)
          Accessor routine.
 Event[] Track.getEvents()
          Returns array of events.
 

Methods in com.dixshtix.midi with parameters of type Event
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 EventCallback.setEvent(Event E)
          Input select mechanism.
 void Track.setEvents(Event[] evnts)
          Set the MIDI events, keeping the data synchronized.
 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 Event
Track(byte[] tr_type, byte[] data, Event[] events)
          Construct a Track from raw data.
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