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

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

Uses of MusicXmlStaff in net.charlesames.music.ensemble
 

Methods in net.charlesames.music.ensemble that return MusicXmlStaff
 MusicXmlStaff MusicXmlPart.createStaff(int id, java.lang.String name)
          Create a new MusicXmlStaff and attach it to this MusicXmlPart.
 MusicXmlStaff MusicXmlPart.createStaff(java.lang.String name)
          Create a new MusicXmlStaff and attach it to this MusicXmlPart.
static MusicXmlStaff MusicXmlStaff.fromXmlNode(org.w3c.dom.Element element, MusicXmlPart part)
          Create a new MusicXmlStaff instance and fill it with loaded data.
 MusicXmlStaff EnsembleVoice.getMusicXmlStaff()
          Getter for the MusicXmlStaff property.
 

Methods in net.charlesames.music.ensemble that return types with arguments of type MusicXmlStaff
 java.util.SortedMap<java.lang.Integer,MusicXmlStaff> MusicXmlPart.getStavesByID()
          Get the collection of MusicXmlStaff instances defined under this MusicXmlPart.
 java.util.SortedMap<java.lang.String,MusicXmlStaff> MusicXmlPart.getStavesByName()
          Get the collection of MusicXmlStaff instances defined under this MusicXmlPart.
 

Methods in net.charlesames.music.ensemble with parameters of type MusicXmlStaff
 void MusicXmlPart.removeStaff(MusicXmlStaff staff)
          Remove an existing MusicXmlStaff from a MusicXmlPart.
 void EnsembleVoice.setMusicXmlStaff(MusicXmlStaff staff)
          Setter for the MusicXmlStaff property.