Uses of Class
net.charlesames.music.musicxml.attribute.Indication

Packages that use Indication
net.charlesames.music.ensemble Classes in package music.ensemble define the structure of scores. 
net.charlesames.music.musicxml.attribute   
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 Indication in net.charlesames.music.ensemble
 

Methods in net.charlesames.music.ensemble that return Indication
 Indication UnpitchedIndication.getIndication()
          Get the MusicXML Indication wrapped by this EnsembleEntity.
 

Methods in net.charlesames.music.ensemble with parameters of type Indication
 UnpitchedIndication UnpitchedSound.createUnpitchedIndication(Indication indication)
          Add the specified MusicXML indication to the sound.
 boolean UnpitchedSound.hasIndication(Indication indication)
          Test if the sound possesses the specified indication.
 void UnpitchedSound.removeIndication(Indication indication)
          Remove the specified MusicXML indication from the sound.
 

Constructors in net.charlesames.music.ensemble with parameters of type Indication
UnpitchedIndication(UnpitchedSound container, Indication indication)
           
 

Uses of Indication in net.charlesames.music.musicxml.attribute
 

Methods in net.charlesames.music.musicxml.attribute that return Indication
static Indication Indication.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Indication[] Indication.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in net.charlesames.music.musicxml.attribute that return types with arguments of type Indication
static java.util.SortedMap<java.lang.String,Indication> Indication.valuesByName()
          Get the collection of indications.
 

Uses of Indication in net.charlesames.music.score
 

Methods in net.charlesames.music.score that return types with arguments of type Indication
 java.util.List<Indication> ScoreNote.getIndications()
          Get the note's collection of MusicXML indications.
 

Methods in net.charlesames.music.score with parameters of type Indication
 void ScoreNote.addIndication(Indication indication)
          Add a MusicXML indication to a note.