I started my work with greenDAO project, which I want to use to simplify database operation in my Android project. So, I would like to create a relation schema in seperated Java generator project.
My aim is to implement a superclass, from which other entities may inherit. Of course, I use a method:
myEntity.setSuperclass("MyCommonBehavior");
for each of inheriting entities. But the question is, how can I set a To-Many Relation to my main ("abstractive") model described in class, instead of setting To-Many Relation to each of specific entities?