use of org.vcell.pathway.UnificationXref in project vcell by virtualcell.
the class PathwayReader method addObjectUnificationXref.
private UnificationXref addObjectUnificationXref(Element element) {
UnificationXref unificationXref = new UnificationXref();
addAttributes(unificationXref, element);
for (Object child : element.getChildren()) {
if (child instanceof Element) {
Element childElement = (Element) child;
if (!addContentUnificationXref(unificationXref, element, childElement)) {
showUnexpected(childElement, unificationXref);
}
}
}
pathwayModel.add(unificationXref);
return unificationXref;
}
Aggregations