package chords.expression;
import static chords.util.Escala.getNotaEscalaBemol;
public class ExpBemol extends Nota {
public ExpBemol(Nota nota) {
super(nota, "b");
}
@Override
public boolean checaNota() {
return getNotaBase() instanceof ExpNota;
}
@Override
public String getFormacaoDaNota() {
return String.format("%s - %s - %s", getNota(),
getNotaEscalaBemol(getNota(), 4),
getNotaEscalaBemol(getNota(), 7));
}
}