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;
}