Exemple #1
0
 public int getDuration() {
   int d = 0;
   for (ScoreSingleNote note : _noteList) {
     d += note.getDuration();
   }
   return d;
 }