use of com.xenoage.zong.io.musicxml.link.LinkAttributes in project Zong by Xenoage.
the class OpusFileInput method readScore.
private Score readScore(XmlReader reader) {
String href = reader.getAttribute("href");
Boolean newPage = Parser.parseBooleanNullYesNo(reader.getAttribute("new-page"));
return new Score(new LinkAttributes(href), newPage);
}
Aggregations