Search in sources :

Example 1 with MxlStemValue

use of com.xenoage.zong.musicxml.types.enums.MxlStemValue in project Zong by Xenoage.

the class MxlStem method read.

@NonNull
public static MxlStem read(XmlReader reader) {
    MxlPosition yPosition = MxlPosition.read(reader);
    MxlColor color = MxlColor.read(reader);
    MxlStemValue stem = MxlStemValue.read(reader);
    return new MxlStem(stem, yPosition, color);
}
Also used : MxlStemValue(com.xenoage.zong.musicxml.types.enums.MxlStemValue) MxlColor(com.xenoage.zong.musicxml.types.attributes.MxlColor) MxlPosition(com.xenoage.zong.musicxml.types.attributes.MxlPosition) NonNull(com.xenoage.utils.annotations.NonNull)

Aggregations

NonNull (com.xenoage.utils.annotations.NonNull)1 MxlColor (com.xenoage.zong.musicxml.types.attributes.MxlColor)1 MxlPosition (com.xenoage.zong.musicxml.types.attributes.MxlPosition)1 MxlStemValue (com.xenoage.zong.musicxml.types.enums.MxlStemValue)1