Package org.semanticweb.owl.model

Examples of org.semanticweb.owl.model.SWRLAtomDObject


        SWRLAtomIObject io2 = parseToAtomIObject( i2 );
        OWLObjectProperty op = factory.getOWLObjectProperty( URI.create( p.getName() ) );
        atom = factory.getSWRLObjectPropertyAtom( op, io1, io2 );
      }
      else if( kb.isDatatypeProperty( p ) ) {
        SWRLAtomDObject do2 = parseToAtomDObject( i2 );
        OWLDataProperty dp = factory.getOWLDataProperty( URI.create( p.getName() ) );
        atom = factory.getSWRLDataValuedPropertyAtom( dp, io1, do2 );
      }
    }
    else if( term.getAFun().equals( ATermUtils.SAMEASFUN ) ) {
View Full Code Here

TOP

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

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.