0

有这样的类层次结构:

interface Item {
}

interface ItemType1 extends Item {
  String getItemType1Data();
}

interface ItemType2 extends Item {
  String getItemType2Data();
}

我有一些我想在 UI 中显示List的对象(仅限查看)。ItemGWT 编辑器框架可以吗?(请不要提供与我的班级层次结构相关的建议 - 比如移动getData()Item

有什么想法吗?

4

1 回答 1

1

请参阅http://code.google.com/p/google-web-toolkit/issues/detail?id=6719使用具有复杂用例的 GWT 编辑器(仅供参考,BobV 是编辑器框架的创建者)

于 2011-10-23T15:29:45.750 回答