Note.java (125B)
1 package com.github.cythara; 2 3 public interface Note { 4 5 NoteName getName(); 6 7 int getOctave(); 8 9 String getSign(); 10 }