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

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

Uses of NoteAttribute in net.charlesames.music.ensemble
 

Fields in net.charlesames.music.ensemble declared as NoteAttribute
static NoteAttribute NoteAttribute.ACCENT
          Note accent.
static NoteAttribute NoteAttribute.DURATION
          Note duration.
static NoteAttribute NoteAttribute.ID
          Note ID.
static NoteAttribute NoteAttribute.INSTRUMENT
          Note-list Instrument ID.
static NoteAttribute NoteAttribute.ONSET
          Note onset time.
static NoteAttribute NoteAttribute.ONSET_PITCH
          Pitch, expressed in cycles per second, as of the note's starting time.
static NoteAttribute NoteAttribute.PROCESS
          Note process ID.
static NoteAttribute NoteAttribute.RELEASE_PITCH
          Pitch, expressed in cycles per second, as of the note's ending time.
static NoteAttribute NoteAttribute.SLUR_FROM_ID
          ID of slur-from note.
static NoteAttribute NoteAttribute.VOICE
          Note voice ID.
 

Methods in net.charlesames.music.ensemble that return NoteAttribute
 NoteAttribute NoteListParameterLink.getNoteAttribute()
          Get the NoteAttribute instance corresponding to the attribute name.
 NoteAttribute NoteListFormat.getNoteAttribute(int parameterID)
          Get the NoteAttribute associated with the indicated parameter ID.
static NoteAttribute NoteAttribute.valueOf(java.lang.String name)
          Find the NoteAttribute instance with the indicated name.
 

Methods in net.charlesames.music.ensemble that return types with arguments of type NoteAttribute
 java.util.SortedMap<java.lang.Integer,NoteAttribute> NoteListFormat.getNoteAttributes()
          Get the sequence of NoteAttribute mappings.
static java.util.SortedMap<java.lang.String,NoteAttribute> NoteAttribute.values()
          Get all the attributes.
 

Methods in net.charlesames.music.ensemble with parameters of type NoteAttribute
 void NoteListParameterLink.linkToAttribute(NoteAttribute attribute)
          Configure this NoteListParameterLink instance to draw from the indicated note attribute.