Package org.semanticweb.owl.model

Examples of org.semanticweb.owl.model.OWLDifferentIndividualsAxiom


    }


    public void handleTriple(URI subject, URI predicate, URI object) throws OWLException {
        Set<OWLIndividual> inds = getConsumer().translateToIndividualSet(object);
        final OWLDifferentIndividualsAxiom axiom = getDataFactory().getOWLDifferentIndividualsAxiom(inds);
        addAxiom(axiom);
        getConsumer().addReifiedAxiom(subject, axiom);
        consumeTriple(subject, predicate, object);
    }
View Full Code Here

TOP

Related Classes of org.semanticweb.owl.model.OWLDifferentIndividualsAxiom

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.