Search in sources :

Example 1 with MxlGroupSymbolValue

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

the class MxlGroupSymbol method read.

@NonNull
public static MxlGroupSymbol read(XmlReader reader) {
    MxlPosition position = MxlPosition.read(reader);
    MxlColor color = MxlColor.read(reader);
    MxlGroupSymbolValue value = MxlGroupSymbolValue.read(reader);
    return new MxlGroupSymbol(value, position, color);
}
Also used : MxlColor(com.xenoage.zong.musicxml.types.attributes.MxlColor) MxlPosition(com.xenoage.zong.musicxml.types.attributes.MxlPosition) MxlGroupSymbolValue(com.xenoage.zong.musicxml.types.enums.MxlGroupSymbolValue) 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 MxlGroupSymbolValue (com.xenoage.zong.musicxml.types.enums.MxlGroupSymbolValue)1