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

Packages that use EnsembleVoice
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 EnsembleVoice in net.charlesames.music.ensemble
 

Methods in net.charlesames.music.ensemble that return EnsembleVoice
 EnsembleVoice EnsembleChoir.createVoice(java.lang.String voiceName)
          Adds an EnsembleVoice to the choir using the next available voice ID.
 EnsembleVoice EnsembleChoir.createVoice(java.lang.String voiceName, int voiceID)
          Adds an EnsembleVoice to the choir.
static EnsembleVoice EnsembleVoice.fromXmlNode(org.w3c.dom.Element element, EnsembleChoir choir)
          Create a new EnsembleVoice instance under a Choir and fill it with loaded data.
 EnsembleVoice EnsembleChoir.getAnyVoice()
           
 EnsembleVoice Ensemble.getAnyVoice()
           
abstract  EnsembleVoice ContainerOfChoirsAndContours.getAnyVoice()
          Searches for any voice specification defined under this Ensemble or Choir, or from any sub-choir.
 EnsembleVoice EnsembleVoiceMusicXmlData.getContainer()
           
 EnsembleVoice EnsembleVoiceMidiData.getContainer()
           
 EnsembleVoice EnsembleInstrumentVoice.getVoice()
          Get the EnsembleVoice identified by this cross-reference object.
 EnsembleVoice Ensemble.getVoice(int id)
          Get the EnsembleVoice instance with the indicated id.
 EnsembleVoice EnsembleChoir.getVoice(java.lang.String name)
          Searches the EnsembleVoices defined under this choir by name.
 EnsembleVoice Ensemble.getVoice(java.lang.String name)
          Get the EnsembleVoice instance with the indicated name.
 

Methods in net.charlesames.music.ensemble that return types with arguments of type EnsembleVoice
 java.util.List<EnsembleVoice> EnsembleInstrument.getUnusedVoices()
          Get the EnsembleVoice instances which are NOT presently among this instrument's capable voices.
 java.util.SortedMap<java.lang.Integer,EnsembleVoice> EnsembleChoir.getVoicesByID()
          Get the collection of EnsembleVoice instances associated with this choir.
 java.util.SortedMap<java.lang.Integer,EnsembleVoice> Ensemble.getVoicesByID()
           
 java.util.SortedMap<java.lang.String,EnsembleVoice> EnsembleChoir.getVoicesByName()
          Get the collection of EnsembleVoice instances associated with this choir.
 java.util.SortedMap<java.lang.String,EnsembleVoice> Ensemble.getVoicesByName()
           
 

Methods in net.charlesames.music.ensemble with parameters of type EnsembleVoice
 EnsembleInstrumentVoice EnsembleInstrument.addCapableVoice(EnsembleVoice voice)
          Add the indicated voice specification to the list of voices capable of playing this instrument.
 boolean MidiControl.hasUsedChannel(EnsembleVoice voice)
          Test if the MIDI channel associated with the indicated voice has been used by this control.
 boolean EnsembleInstrument.isCapableVoice(EnsembleVoice voice)
          Test if the indicated voice is capable of playing this instrument.
 boolean MusicXmlPart.isCompatibleWithVoice(EnsembleVoice voice)
          Test if this MusicXmlPart resides within the indicated voice's choir hierarchy.
 void MidiControl.setUsedChannel(EnsembleVoice voice)
          Flag the MIDI channel associated with the indicated voice as having been used by this control.
 

Constructors in net.charlesames.music.ensemble with parameters of type EnsembleVoice
EnsembleVoiceMidiData(EnsembleVoice container)
          Constructor for EnsembleVoiceMidiData instances.
EnsembleVoiceMusicXmlData(EnsembleVoice container)
          Constructor for EnsembleVoiceMusicXmlData instances.
 

Uses of EnsembleVoice in net.charlesames.music.score
 

Methods in net.charlesames.music.score that return EnsembleVoice
 EnsembleVoice ScoreVoice.getEnsembleVoice()
           
 

Methods in net.charlesames.music.score with parameters of type EnsembleVoice
 ScoreVoice Score.addVoice(EnsembleVoice spec)
          Add a new voice to the score, based on an ensemble EnsembleVoice.
 Ratio ScoreTuplet.getPeriod(EnsembleVoice voice)
          Get the tuplet end time - start time for the specified voice.