Search in sources :

Example 1 with MxlUprightInverted

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

Aggregations

MaybeNull (com.xenoage.utils.annotations.MaybeNull)1 MxlPrintStyle (com.xenoage.zong.musicxml.types.attributes.MxlPrintStyle)1 MxlUprightInverted (com.xenoage.zong.musicxml.types.enums.MxlUprightInverted)1