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

Packages that use EnsembleContour
net.charlesames.music.ensemble Classes in package music.ensemble define the structure of scores. 
net.charlesames.music.score Classes in the {code net.charlesames.music.score} package represent musical scores and the components which comprise musical scores. 
 

Uses of EnsembleContour in net.charlesames.music.ensemble
 

Methods in net.charlesames.music.ensemble that return EnsembleContour
 EnsembleContour EnsembleChoir.createContour(java.lang.String name, int id, CalculationMode calculationMode)
          Add a new contour specification to a choir.
 EnsembleContour EnsembleChoir.createVelocityContour()
          Add a standard Velocity EnsembleContour with a corresponding MIDI control.
static EnsembleContour EnsembleContour.fromXmlNode(org.w3c.dom.Element element, ContainerOfChoirsAndContours container)
          Create a new EnsembleContour instance and fill it with loaded data.
 EnsembleContour EnsembleChoir.getChildContour(int id)
          Search by id for a EnsembleContour which is defined in any sub-choir of this choir.
 EnsembleContour EnsembleChoir.getChildContour(java.lang.String name)
          Search by name for a EnsembleContour which is defined in any sub-choir of this choir.
 EnsembleContour EnsembleContourNoteListData.getContainer()
           
 EnsembleContour NoteListInstrumentContour.getContour()
          Deprecated. Get the EnsembleContour instance.
 EnsembleContour MidiControl.getContour()
          Getter for the Contour property.
 EnsembleContour EnsembleChoir.getContour(int id)
          Searches the EnsembleContours defined under this choir by id.
 EnsembleContour Ensemble.getContour(int index)
           
 EnsembleContour EnsembleChoir.getContour(java.lang.String name)
          Searches the EnsembleContours defined under this choir by name.
 EnsembleContour EnsembleVoice.getContourByID(int id)
          Search by id all defined EnsembleContour instances, working down the hierarchy from the Ensemble itself through each EnsembleChoir and sub-choir that contains this EnsembleVoice.
 EnsembleContour EnsembleVoice.getContourByName(java.lang.String name)
          Search by name all defined EnsembleContour instances, working down the hierarchy from the Ensemble itself through each EnsembleChoir and sub-choir that contains this EnsembleVoice.
 EnsembleContour EnsembleChoir.getParentContour(int id)
          Search by id for a contour which is defined in this choir or one of its parents.
 EnsembleContour EnsembleChoir.getParentContour(java.lang.String name)
          Search by name for a EnsembleContour which is defined in this choir or one of its parents.
 EnsembleContour Ensemble.getTempoContour()
           
 

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

Methods in net.charlesames.music.ensemble with parameters of type EnsembleContour
 void NoteListParameterLink.linkToContour(EnsembleContour ensembleContour, NoteListParameterLink.Moment moment)
          Configure this NoteListParameterLink instance to draw from the indicated contour as of the indicated moment.
 void MidiControl.setContour(EnsembleContour contour)
          Setter for the Contour property.
 

Constructors in net.charlesames.music.ensemble with parameters of type EnsembleContour
EnsembleContourNoteListData(EnsembleContour container)
          Constructor for EnsembleContourNoteListData instances.
 

Uses of EnsembleContour in net.charlesames.music.score
 

Methods in net.charlesames.music.score that return EnsembleContour
 EnsembleContour ScoreContour.getEnsembleContour()
           
 

Methods in net.charlesames.music.score with parameters of type EnsembleContour
 ScoreContour Score.addContour(EnsembleContour spec)
          Add a new contour to the score, based on an ensemble EnsembleContour.