Package org.semanticweb.owlapi.reasoner.impl

Examples of org.semanticweb.owlapi.reasoner.impl.OWLDataPropertyNodeSet


    try {
      Set<Node<OWLDataProperty>> values = new HashSet<Node<OWLDataProperty>>();
      for( Set<ATermAppl> val : kb.getSuperProperties( term( pe ), direct ) ) {
        values.add( toDataPropertyNode( val ) );
      }
      return new OWLDataPropertyNodeSet( values );
    } catch( PelletRuntimeException e ) {
      throw convert( e );
    }
  }
View Full Code Here

TOP

Related Classes of org.semanticweb.owlapi.reasoner.impl.OWLDataPropertyNodeSet

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.