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

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

Uses of MusicXmlPart in net.charlesames.music.ensemble
 

Methods in net.charlesames.music.ensemble that return MusicXmlPart
 MusicXmlPart EnsembleChoir.createMusicXmlPart(java.lang.String name)
          Create a new MusicXmlPart instance using the next available id.
 MusicXmlPart EnsembleChoir.createMusicXmlPart(java.lang.String name, int id)
          Create a new MusicXmlPart instance.
static MusicXmlPart MusicXmlPart.fromXmlNode(org.w3c.dom.Element element, EnsembleChoir choir)
          Create a new MusicXmlPart instance and fill it with loaded data.
static MusicXmlPart MusicXmlPart.fromXmlRefNode(org.w3c.dom.Element element, Ensemble ensemble)
          Use information in an XML reference node to dereference a MusicXmlPart.
 MusicXmlPart MusicXmlStaff.getContainer()
           
 MusicXmlPart Ensemble.getMusicXmlPart(int id)
          Get the MusicXmlPart with the indicated id.
 MusicXmlPart Ensemble.getMusicXmlPart(java.lang.String name)
          Get the MusicXmlPart with the indicated name.
 

Methods in net.charlesames.music.ensemble that return types with arguments of type MusicXmlPart
 java.util.SortedMap<java.lang.Integer,MusicXmlPart> EnsembleChoir.getMusicXmlPartsByID()
          Get the choir-specific collection of MusicXmlPart instances.
 java.util.SortedMap<java.lang.Integer,MusicXmlPart> Ensemble.getMusicXmlPartsByID()
          Get the ensemble-wide collection of MusicXmlPart instances.
 java.util.SortedMap<java.lang.String,MusicXmlPart> EnsembleChoir.getMusicXmlPartsByName()
          Get the choir-specific collection of MusicXmlPart instances.
 java.util.SortedMap<java.lang.String,MusicXmlPart> Ensemble.getMusicXmlPartsByName()
          Get the ensemble-wide collection of MusicXmlPart instances.
 

Methods in net.charlesames.music.ensemble with parameters of type MusicXmlPart
static MusicXmlStaff MusicXmlStaff.fromXmlNode(org.w3c.dom.Element element, MusicXmlPart part)
          Create a new MusicXmlStaff instance and fill it with loaded data.
 void Ensemble.removeMusicXmlPart(MusicXmlPart part)
          Remove a MusicXmlPart instance from its parent EnsembleChoir and from this ensemble.