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

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

Uses of NoteListParameter in net.charlesames.music.ensemble
 

Methods in net.charlesames.music.ensemble that return NoteListParameter
 NoteListParameter NoteListInstrument.createParameter(int id, java.lang.String name)
          Create a new NoteListParameter.
static NoteListParameter NoteListParameter.fromXmlNode(org.w3c.dom.Element element, NoteListInstrument container)
          Create a new NoteListParameter instance and fill it with loaded data.
 NoteListParameter NoteListParameterLink.getParameter()
          Get the referenced NoteListParameter.
 

Methods in net.charlesames.music.ensemble that return types with arguments of type NoteListParameter
 java.util.SortedMap<java.lang.Integer,NoteListParameter> NoteListInstrument.getParametersByID()
          Get this instrument's parameter list.
 java.util.SortedMap<java.lang.String,NoteListParameter> NoteListInstrument.getParametersByName()
          Get this instrument's parameter list.
 

Methods in net.charlesames.music.ensemble with parameters of type NoteListParameter
 NoteListParameterLink NoteListInstrumentLink.addParameterLink(NoteListParameter parameter)
          Add a link to the indicated note-list parameter
 void NoteListInstrumentLink.removeParameter(NoteListParameter parameter)
          Remove a link to the indicated note-list parameter
 

Constructors in net.charlesames.music.ensemble with parameters of type NoteListParameter
NoteListParameterLink(NoteListInstrumentLink instrumentLink, NoteListParameter parameter)
          Constructor for NoteListParameterLink instances.