Search in sources :

Example 1 with MxlBarStyle

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

Aggregations

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