Package edu.stanford.bmir.protege.web.shared.entity

Examples of edu.stanford.bmir.protege.web.shared.entity.OWLObjectPropertyData


                    }
                }
            }
            if (relationships.size() == conjuncts.size()) {
                for (OWLObjectSomeValuesFrom rel : relationships) {
                    OWLObjectPropertyData property = toData(rel.getProperty().asOWLObjectProperty(), project);
                    OWLClassData filler = toData(rel.getFiller().asOWLClass(), project);
                    OBORelationship oboRel = new OBORelationship(property, filler);
                    rels.add(oboRel);
                }
            }
View Full Code Here


        if (genus != null) {
            visualCls = toData(genus, project);
        }

        for (OWLObjectSomeValuesFrom rel : relationships) {
            OWLObjectPropertyData property = toData(rel.getProperty().asOWLObjectProperty(), project);
            OWLClassData filler = toData(rel.getFiller().asOWLClass(), project);
            OBORelationship oboRel = new OBORelationship(property, filler);
            discriminatingRelationships.add(oboRel);
        }
        return new OBOTermCrossProduct(visualCls, new OBOTermRelationships(discriminatingRelationships));
View Full Code Here

    private OWLClassData toData(OWLClass cls, OWLAPIProject project) {
        return new OWLClassData(cls, project.getRenderingManager().getBrowserText(cls));
    }

    private OWLObjectPropertyData toData(OWLObjectProperty property, OWLAPIProject project) {
        return new OWLObjectPropertyData(property, project.getRenderingManager().getBrowserText(property));
    }
View Full Code Here

TOP

Related Classes of edu.stanford.bmir.protege.web.shared.entity.OWLObjectPropertyData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.