use of com.xenoage.zong.musicxml.types.enums.MxlUprightInverted in project Zong by Xenoage.
the class MxlFermata method read.
/**
* Reads the given element and returns it, or returns null if
* the element is not supported.
*/
@MaybeNull
public static MxlFermata read(XmlReader reader) {
MxlUprightInverted type = MxlUprightInverted.read(reader, "type");
MxlPrintStyle printStyle = MxlPrintStyle.read(reader);
return new MxlFermata(type, printStyle);
}
Aggregations