Name addPhraseNoteList( )
Syntax addPhraseNoteList(String phraseTitle, float[][] notes);
Example

Etude e = new Etude(this);
e.createPhrase("phrase_1");
float[] note = {{e.C5, e.Q}, {e.D5, e.Q}, {e.E5, e.Q}};
e.addPhraseNoteList("phrase_1", notes);

Parameters phraseTitle:string
notes: float[ ][ ]
Return none
Usage web & application
Description Add a list of notes to a phrase. A single note is a float array where the first index is the pitch value and the second index is the rhytm value.