seventhChordDef = Chords.SEVENTH_SHARP_FIFTH;
otherChordDef = Chords.AUGMENTED; // nothing specific - use default
}
if (chordDef != null) { // chords in some scales (e.g. Turkish) may not be classified in the above 4 groups. Skip those
ToneType firstToneType = ToneType.forDegree(Arrays.binarySearch(scale.getDefinition(), note));
Chord chord = getChordDef(note, chordDef);
chord.setChordType(ChordType.values()[chordType]);
chord.setFirstToneType(firstToneType);
scaleChords.add(chord);