Hi,
is it somehow possible to skip classes in a class hierarchy when using the Editor Framework?
For example I have lightweight model classes that only contains a Long id and the actual model with all properties. If a property is a list of other model classes this list only contains the lightweight version of the model.
Example hierarchy:
Model1Lite
-> Long id
-> Model1
-> simple properties (Strings, etc.)
-> List<Model2Lite>
-> each Model2Lite contains a Long id and Model2.
I haven't found a way to skip all the Model1Lite classes when building up an editor hierarchy. Is this somehow possible?
-- J.