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

Examples of ru.spbu.math.ontologycomparison.zhukova.logic.ontologygraph.impl.OntologyRelation


public class PropertyVisitor implements IPropertyVisitor<IOntologyConcept> {

    public void inRelationship(IOntologyConcept node, IOntologyConcept friend, OWLPropertyExpression property) {
        if (node != null && property instanceof OWLObjectProperty) {
            OWLObjectProperty objectProperty = (OWLObjectProperty) property;
            node.addSubjectRelation(new OntologyRelation(objectProperty.getIRI().toURI(), objectProperty.toString(), false, node, friend));
        }
    }
View Full Code Here

TOP

Related Classes of ru.spbu.math.ontologycomparison.zhukova.logic.ontologygraph.impl.OntologyRelation

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.