Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 IntelliJ 中使用 OWLAPI 4.0.1 作为 Maven 的全局库。我在网上看到很多关于如何获取类注释的示例(例如这个相关问题中的那个),但 IntelliJ 告诉我没有这样的 getAnnotations() 方法。其他 API 代码工作正常,我能够在本体中找到类和属性。OWLAPI 是否发生了变化,还是我遗漏了什么?
是的,这在 OWLAPI 4 中已更改。请EntitySearcher.getAnnotations(cls.getIRI(), ontology)改用。
EntitySearcher.getAnnotations(cls.getIRI(), ontology)