use of com.xenoage.zong.musicxml.types.attributes.MxlColor 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);
}
use of com.xenoage.zong.musicxml.types.attributes.MxlColor 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);
}
use of com.xenoage.zong.musicxml.types.attributes.MxlColor 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);
}
use of com.xenoage.zong.musicxml.types.attributes.MxlColor 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);
}
Aggregations