Package org.semanticweb.owlapi.profiles.violations

Examples of org.semanticweb.owlapi.profiles.violations.DatatypeIRIAlsoUsedAsClassIRI


                profileViolations.add(new UseOfUndeclaredClass(
                        getCurrentOntology(), getCurrentAxiom(), ce));
            }
            if (getCurrentOntology().containsDatatypeInSignature(ce.getIRI(),
                    EXCLUDED)) {
                profileViolations.add(new DatatypeIRIAlsoUsedAsClassIRI(
                        getCurrentOntology(), getCurrentAxiom(), ce.getIRI()));
            }
        }
View Full Code Here


                }
            }
            if (getCurrentOntology().containsClassInSignature(node.getIRI(),
                    INCLUDED)) {
                profileViolations
                        .add(new DatatypeIRIAlsoUsedAsClassIRI(
                                getCurrentOntology(), getCurrentAxiom(), node
                                        .getIRI()));
            }
        }
View Full Code Here

TOP

Related Classes of org.semanticweb.owlapi.profiles.violations.DatatypeIRIAlsoUsedAsClassIRI

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.