Hello,
You can use "dp.EditorAnnotation" to get or set the annotation values.
Here is an example:
onto = get_ontology("
http://test.org/t.owl")
with onto:
class Clazz(Thing): pass
class hasSomething(Clazz >> str): pass
class EditorAnnotation(AnnotationProperty): pass
class EditorPrivateComment(EditorAnnotation): pass
hasSomething.EditorAnnotation = ["annotation value"]
Jiba