Uses of Class
com.softsynth.jmsl.Interpreter

Packages that use Interpreter
com.softsynth.jmsl   
com.softsynth.jmsl.util   
 

Uses of Interpreter in com.softsynth.jmsl
 

Subclasses of Interpreter in com.softsynth.jmsl
 class NoteInterpreter
          NoteInterpreter.java
Interprets shape data as MIDI style notes.
 class NoteOnOffInterpreter
          NoteOnOffInterpreter.java
Interprets shape data as individual MIDI style notes note ONs and OFFs.
 class SustainingInterpreter
          SustainingInterpreter
An interpreter that interprets shape data, sustains that for some duration, then shuts it down.

Here is an example of defining interpret(), which turns ON an event, and interpretOff() which turns it OFF

 

Methods in com.softsynth.jmsl that return Interpreter
 Interpreter InstrumentAdapter.getInterpreter()
           
 Interpreter Instrument.getInterpreter()
           
 

Methods in com.softsynth.jmsl with parameters of type Interpreter
 void InstrumentAdapter.setInterpreter(Interpreter interp)
          Plug a custom interpreter into this instrument.
 void Instrument.setInterpreter(Interpreter interp)
           
 

Uses of Interpreter in com.softsynth.jmsl.util
 

Subclasses of Interpreter in com.softsynth.jmsl.util
 class SimplePrintingInterpreter
          An Interpreter that simply prints the time and the MusicShape data it is being handed.