Package | Description |
---|---|
provided.abcParser | |
provided.music | |
provided.player | |
provided.util |
Modifier and Type | Field and Description |
---|---|
private java.util.Set<Note> |
ABCParser.accidentalNotes
Set of accidental notes in the current measure.
|
Modifier and Type | Method and Description |
---|---|
private Note |
ABCParser.makeNote(Token host)
Parse a Note from the given Token
|
Modifier and Type | Method and Description |
---|---|
private void |
ABCParser.addAccidental(Note note)
Adds a note to the set of accidentals replaces any note with the same
name and octave.
|
private void |
ABCParser.checkAccidentals(Note note)
Checks to see if the given Note is in the set of accidentals Checks name
and octave but not duration or accidental
|
private void |
ABCParser.removeAccidental(Note note)
Removes a note from the set of accidentals Removes any note with the same
name and octave.
|
Modifier and Type | Field and Description |
---|---|
protected Note[] |
NoteCollection.notes
An array of the notes that comprise this collection.
|
Modifier and Type | Method and Description |
---|---|
Note[] |
NoteCollection.getNotes()
Accessor for the array of notes in this collection
|
Constructor and Description |
---|
Chord(Note... notes)
Create a Chord out of a collection of notes.
|
NoteCollection(Note... notes)
Constructor that takes notes that form this collection
|
Triplet(Note n1,
Note n2,
Note n3)
Create a new Note out of three notes
|
Tuplet(Note... notes)
Constructor for a tuplet
|
Modifier and Type | Method and Description |
---|---|
int |
SequencePlayer2.addNote(Note note,
int start)
Add a note to the MIDI sequence with a default velocity of 64 for middle volume
|
int |
SequencePlayer.addNote(Note note,
int start)
Add a note to the MIDI sequence with a default velocity of 64 for middle volume
|
int |
SequencePlayer2.addNote(Note note,
int start,
int velocity)
Add a note to the MIDI sequence.
|
int |
SequencePlayer.addNote(Note note,
int start,
int velocity)
Add a note to the MIDI sequence.
|
Modifier and Type | Method and Description |
---|---|
Note |
KeySignature.adjust(Note n)
Takes a note and returns the properly transposed note in this key signature
|
Modifier and Type | Method and Description |
---|---|
Note |
KeySignature.adjust(Note n)
Takes a note and returns the properly transposed note in this key signature
|