Search in sources :

Example 1 with EntityReferenceProxy

use of org.vcell.pathway.persistence.BiopaxProxy.EntityReferenceProxy in project vcell by virtualcell.

the class PathwayReaderBiopax3 method addObjectEntityReference.

private EntityReference addObjectEntityReference(Element element) {
    if (element.getChildren().size() == 0) {
        EntityReferenceProxy proxy = new EntityReferenceProxy();
        addAttributes(proxy, element);
        pathwayModel.add(proxy);
        return proxy;
    }
    for (Object child : element.getChildren()) {
        if (child instanceof Element) {
            Element childElement = (Element) child;
            if (childElement.getName().equals("DnaReference")) {
                DnaReference thingie = addObjectDnaReference(childElement);
                pathwayModel.add(thingie);
                return thingie;
            } else if (childElement.getName().equals("DnaRegionReference")) {
                DnaRegionReference thingie = addObjectDnaRegionReference(childElement);
                pathwayModel.add(thingie);
                return thingie;
            } else if (childElement.getName().equals("ProteinReference")) {
                ProteinReference thingie = addObjectProteinReference(childElement);
                pathwayModel.add(thingie);
                return thingie;
            } else if (childElement.getName().equals("RnaReference")) {
                RnaReference thingie = addObjectRnaReference(childElement);
                pathwayModel.add(thingie);
                return thingie;
            } else if (childElement.getName().equals("RnaRegionReference")) {
                RnaRegionReference thingie = addObjectRnaRegionReference(childElement);
                pathwayModel.add(thingie);
                return thingie;
            } else if (childElement.getName().equals("SmallMoleculeReference")) {
                SmallMoleculeReference thingie = addObjectSmallMoleculeReference(childElement);
                pathwayModel.add(thingie);
                return thingie;
            }
        }
    }
    EntityReference entityReference = new EntityReference();
    addAttributes(entityReference, element);
    for (Object child : element.getChildren()) {
        if (child instanceof Element) {
            Element childElement = (Element) child;
            if (!addContentEntityReference(entityReference, element, childElement)) {
                // to self ??
                showUnexpected(childElement);
            }
        }
    }
    pathwayModel.add(entityReference);
    return entityReference;
}
Also used : DnaReference(org.vcell.pathway.DnaReference) DnaRegionReference(org.vcell.pathway.DnaRegionReference) Element(org.jdom.Element) EntityReference(org.vcell.pathway.EntityReference) EntityReferenceProxy(org.vcell.pathway.persistence.BiopaxProxy.EntityReferenceProxy) GroupObject(org.vcell.pathway.GroupObject) BioPaxObject(org.vcell.pathway.BioPaxObject) ProteinReference(org.vcell.pathway.ProteinReference) RnaReference(org.vcell.pathway.RnaReference) RnaRegionReference(org.vcell.pathway.RnaRegionReference) SmallMoleculeReference(org.vcell.pathway.SmallMoleculeReference)

Aggregations

Element (org.jdom.Element)1 BioPaxObject (org.vcell.pathway.BioPaxObject)1 DnaReference (org.vcell.pathway.DnaReference)1 DnaRegionReference (org.vcell.pathway.DnaRegionReference)1 EntityReference (org.vcell.pathway.EntityReference)1 GroupObject (org.vcell.pathway.GroupObject)1 ProteinReference (org.vcell.pathway.ProteinReference)1 RnaReference (org.vcell.pathway.RnaReference)1 RnaRegionReference (org.vcell.pathway.RnaRegionReference)1 SmallMoleculeReference (org.vcell.pathway.SmallMoleculeReference)1 EntityReferenceProxy (org.vcell.pathway.persistence.BiopaxProxy.EntityReferenceProxy)1