Search in sources :

Example 1 with MxlClef

use of com.xenoage.zong.musicxml.types.MxlClef in project Zong by Xenoage.

the class ClefReader method read.

public Clef read() {
    if (mxlClef == null)
        return null;
    ClefType clefType = readType();
    Clef clef = (clefType != null ? new Clef(clefType) : null);
    return clef;
}
Also used : ClefType(com.xenoage.zong.core.music.clef.ClefType) Clef(com.xenoage.zong.core.music.clef.Clef) MxlClef(com.xenoage.zong.musicxml.types.MxlClef)

Aggregations

Clef (com.xenoage.zong.core.music.clef.Clef)1 ClefType (com.xenoage.zong.core.music.clef.ClefType)1 MxlClef (com.xenoage.zong.musicxml.types.MxlClef)1