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);
}
Aggregations