use of com.xenoage.zong.musicxml.types.MxlIdentification in project Zong by Xenoage.
the class ScoreInfoReader method readRights.
private void readRights() {
MxlIdentification mxlIdentification = mxlHeader.getIdentification();
if (mxlIdentification != null) {
for (MxlTypedText mxlRights : it(mxlIdentification.getRights())) {
Rights rights = new Rights(mxlRights.getValue(), mxlRights.getType());
scoreInfo.getRights().add(rights);
}
}
}
use of com.xenoage.zong.musicxml.types.MxlIdentification in project Zong by Xenoage.
the class ScoreInfoReader method readCreators.
private void readCreators() {
MxlIdentification mxlIdentification = mxlHeader.getIdentification();
if (mxlIdentification != null) {
for (MxlTypedText mxlCreator : it(mxlIdentification.getCreators())) {
Creator creator = new Creator(mxlCreator.getValue(), mxlCreator.getType());
scoreInfo.getCreators().add(creator);
}
}
}
Aggregations