DixShtix

com.dixshtix.midi
Interface EventCallback


public interface EventCallback

Interface for user routines. Anyone who uses this version of the interface should be shot. Fixes will come soon.

Version:
0.1
Author:
Richard C. Penner II

Method Summary
 Event getEvent(int index)
          Accessor routine.
 int numberEvents()
          Accessor routine.
 void processEvent()
          Main processing routine.
 void setEvent(Event E)
          Input select mechanism.
 

Method Detail

setEvent

public void setEvent(Event E)
Input select mechanism.
Parameters:
E - The input event.

processEvent

public void processEvent()
Main processing routine.

numberEvents

public int numberEvents()
Accessor routine. Get size of the return array.

getEvent

public Event getEvent(int index)
Accessor routine. Get one element of the return array.
Parameters:
index - In the range 0 .. N.

DixShtix