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