use of com.xenoage.zong.musicxml.types.enums.MxlAccidentalText in project Zong by Xenoage.
the class MxlAccidentalMark method read.
@NonNull
public static MxlAccidentalMark read(XmlReader reader) {
MxlPrintStyle printStyle = MxlPrintStyle.read(reader);
MxlPlacement placement = MxlPlacement.read(reader);
MxlAccidentalText accidentalText = MxlAccidentalText.read(reader);
return new MxlAccidentalMark(accidentalText, printStyle, placement);
}
Aggregations