Search in sources :

Example 1 with MxlGroupBarlineValue

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

the class MxlGroupBarline method read.

@NonNull
public static MxlGroupBarline read(XmlReader reader) {
    MxlColor color = MxlColor.read(reader);
    MxlGroupBarlineValue value = MxlGroupBarlineValue.read(reader);
    return new MxlGroupBarline(value, color);
}
Also used : MxlGroupBarlineValue(com.xenoage.zong.musicxml.types.enums.MxlGroupBarlineValue) MxlColor(com.xenoage.zong.musicxml.types.attributes.MxlColor) NonNull(com.xenoage.utils.annotations.NonNull)

Aggregations

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