Package ru.spbu.math.ontologycomparison.zhukova.logic.ontologygraph

Examples of ru.spbu.math.ontologycomparison.zhukova.logic.ontologygraph.IOntologyConcept.addParent()


            NodeSet<OWLClass> children = this.reasoner.getSubClasses(clazz, true);
            for (OWLClass child : children.getFlattened()) {
                if (!child.equals(clazz)) {
                    IOntologyConcept childConcept = loadClass(child, annotationVisitor, concepts, labelToConcept, roots, root && concept == null);
                    if (childConcept != null && concept != null) {
                        childConcept.addParent(concept);
                        concept.addChild(childConcept);
                    }
                }
            }
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.