GWT heterogenous lists in editors framework

292 views Asked by At

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?

1

There are 1 answers

0
Thomas Broyer On BEST ANSWER