Search in sources :

Example 1 with MxlAccidentalText

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);
}
Also used : MxlAccidentalText(com.xenoage.zong.musicxml.types.enums.MxlAccidentalText) MxlPlacement(com.xenoage.zong.musicxml.types.enums.MxlPlacement) MxlPrintStyle(com.xenoage.zong.musicxml.types.attributes.MxlPrintStyle) NonNull(com.xenoage.utils.annotations.NonNull)

Aggregations

NonNull (com.xenoage.utils.annotations.NonNull)1 MxlPrintStyle (com.xenoage.zong.musicxml.types.attributes.MxlPrintStyle)1 MxlAccidentalText (com.xenoage.zong.musicxml.types.enums.MxlAccidentalText)1 MxlPlacement (com.xenoage.zong.musicxml.types.enums.MxlPlacement)1