Пример #1
0
 public NodeSet<OWLNamedIndividual> getObjectPropertyValues(
     OWLNamedIndividual ind, OWLObjectPropertyExpression pe)
     throws InconsistentOntologyException, FreshEntitiesException, ReasonerInterruptedException,
         TimeOutException {
   refreshCheck();
   try {
     return getIndividualNodeSet(kb.getObjectPropertyValues(term(pe), term(ind)));
   } catch (PelletRuntimeException e) {
     throw convert(e);
   }
 }