Examples of addEquivalentClassAssertion()


Examples of org.apache.stanbol.cmsadapter.servicesapi.helper.OntologyResourceHelper.addEquivalentClassAssertion()

                    orh.addSubsumptionAssertion(subjectClass, c);
                }

            } else if (annotation.equals(AnnotationType.EQUIVALENT_CLASS)) {
                for (OntClass c : referencedClasses) {
                    orh.addEquivalentClassAssertion(subjectClass, c);
                }

            } else if (annotation.equals(AnnotationType.DISJOINT_WITH)) {
                for (OntClass c : referencedClasses) {
                    orh.addDisjointWithAssertion(subjectClass, c);
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.