dkpro / dkpro-cassis

UIMA CAS processing library written in Python
https://pypi.org/project/dkpro-cassis/
Apache License 2.0
84 stars 22 forks source link

Provide domain on feature #204

Closed reckart closed 2 years ago

reckart commented 2 years ago

Is your feature request related to a problem? Please describe. Currently, there is no easy way to figure out which type defines a feature. E.g. if I look at the "begin" and "end" features of a feature structure, I need to check the entire inheritance hierarchy to figure out if the begin and end are inherited from the type Annotation or not.

Describe the solution you'd like The UIMA Java SDK Feature class has a domain property which refers to the type that defines the feature. Would be nice to have this in cassis as well.

Describe alternatives you've considered Checking the inheritance tree.