use of com.xenoage.zong.musicxml.types.enums.MxlLeftCenterRight in project Zong by Xenoage.
the class MxlFormattedText method read.
@NonNull
public static MxlFormattedText read(XmlReader reader) {
MxlLeftCenterRight justify = MxlLeftCenterRight.read(reader, "justify");
MxlLeftCenterRight hAlign = MxlLeftCenterRight.read(reader, "halign");
MxlVAlign vAlign = MxlVAlign.read(reader);
MxlPrintStyle printStyle = MxlPrintStyle.read(reader);
String value = reader.getTextNotNull();
return new MxlFormattedText(value, justify, hAlign, vAlign, printStyle);
}
Aggregations