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