There's a class hierarchy like this:
interface Item {
}
interface ItemType1 extends Item {
String getItemType1Data();
}
interface ItemType2 extends Item {
String getItemType2Data();
}
I have a List
of Item
objects that I'd like to display in UI (view only). Is it possible with GWT editors framework? (Please no advices related with my class hierarchy - like moving getData()
to Item
)
Any thoughts?