Examples of OntologyRelation


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
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.