Examples of asSubObjectPropertyOfAxioms()


Examples of org.semanticweb.owlapi.model.OWLEquivalentObjectPropertiesAxiom.asSubObjectPropertyOfAxioms()

    @Test
    public void testAsSubAxiomsEquivalentObjectProperties() {
        OWLObjectPropertyExpression[] properties = { OP(IRI()), OP(IRI()) };
        OWLEquivalentObjectPropertiesAxiom objA = testSubject
                .getOWLEquivalentObjectPropertiesAxiom(properties);
        assertEquals(2, objA.asSubObjectPropertyOfAxioms().size());
    }

    @Test
    public void testCreationEquivalentObjectProperties() {
        OWLObjectPropertyExpression[] properties = { OP(IRI()), OP(IRI()),
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.