use of com.xenoage.zong.musicxml.types.enums.MxlBarStyle in project Zong by Xenoage.
the class MxlBarStyleColor method read.
@NonNull
public static MxlBarStyleColor read(XmlReader reader) {
MxlColor color = MxlColor.read(reader);
MxlBarStyle barStyle = MxlBarStyle.read(reader);
return new MxlBarStyleColor(barStyle, color);
}
Aggregations