package chords.expression;
import chords.util.Escala;
import static chords.util.Escala.*;
public class ExpNota extends Nota {
public ExpNota(String nota) {
super(null, nota);
}
@Override
public boolean checaNota() {
return getNota() != null;
}
@Override
public String getFormacaoDaNota() {
return String.format("%s - %s - %s", getNota(),
getNotaEscalaSustenido(getNota(), 4),
getNotaEscalaSustenido(getNota(), 7));
}
}