* extend the HelperGUI class.
*/
protected Score compose() {
// Simple example composition
Phrase phrase = new Phrase();
Score s = new Score(new Part(phrase));
//for(int i = 0; i < 8; i++) {
Note n = new Note(48 + (int) (Math.random() * variableA), 0.5 + variableB * 0.25);
phrase.addNote(n);
//}