Uses of Class
com.softsynth.jmsl.Interpreter
Package | Description |
---|---|
com.softsynth.jmsl | |
com.softsynth.jmsl.util |
-
Uses of Interpreter in com.softsynth.jmsl
Subclasses of Interpreter in com.softsynth.jmsl Modifier and Type Class Description 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 OFFMethods in com.softsynth.jmsl that return Interpreter Modifier and Type Method Description Interpreter
Instrument. getInterpreter()
Interpreter
InstrumentAdapter. getInterpreter()
Methods in com.softsynth.jmsl with parameters of type Interpreter Modifier and Type Method Description void
Instrument. setInterpreter(Interpreter interp)
void
InstrumentAdapter. setInterpreter(Interpreter interp)
Plug a custom interpreter into this instrument. -
Uses of Interpreter in com.softsynth.jmsl.util
Subclasses of Interpreter in com.softsynth.jmsl.util Modifier and Type Class Description class
SimplePrintingInterpreter
An Interpreter that simply prints the time and the MusicShape data it is being handed.