Uses of Class
net.charlesames.music.ensemble.MidiControl

Packages that use MidiControl
net.charlesames.music.ensemble Classes in package music.ensemble define the structure of scores. 
 

Uses of MidiControl in net.charlesames.music.ensemble
 

Methods in net.charlesames.music.ensemble that return MidiControl
 MidiControl EnsembleContour.addMidiControl(TypeOfMidiControl controlType)
          Create a new MidiControl instance.
 MidiControl EnsembleChoir.addMidiControl(TypeOfMidiControl controlType)
          Add a new MidiControl to a choir.
static MidiControl MidiControl.fromXmlNode(org.w3c.dom.Element element, EnsembleChoir choir)
          Create a new MidiControl instance and fill it with loaded data.
 MidiControl EnsembleChoir.getChildControl(TypeOfMidiControl controlType)
          Search by name for a MidiControl which is defined in any sub-choir of this choir.
 MidiControl EnsembleChoir.getMidiControl(TypeOfMidiControl controlType)
          Search the MidiControls defined under this choir by control type.
 MidiControl EnsembleChoir.getParentControl(TypeOfMidiControl controlType)
          Search by control type for a MidiControl which is defined in this choir or one of its parents.
 

Methods in net.charlesames.music.ensemble that return types with arguments of type MidiControl
 java.util.SortedMap<java.lang.String,MidiControl> EnsembleVoice.getMidiControls()
          List all defined MidiControl instances, working down the hierarchy from the Ensemble itself through each EnsembleChoir and sub-choir that contains this EnsembleVoice.
 java.util.SortedMap<java.lang.String,MidiControl> EnsembleContour.getMidiControls()
           
 java.util.SortedMap<java.lang.String,MidiControl> EnsembleChoir.getMidiControls()