ここでは問題です:私は豆と、このBeanを持つ列挙型プロパティを持っている:GWT、列挙型、ラジオボタンとエディタフレームワーク
enum E {
ONE, TWO, THREE;
}
class A implements Serializable {
public E foo;
}
私はこのBean
ユーザーの編集をできるように GWT Editor frameworkを使用したいですpublic class P extends FlowPanel implements Editor<A> {
// ... UiBinder code here ...
@UiField RadioButton one, two, three;
// ...
}
私はエラーを持っている:
[ERROR] [gwtmodule] - Could not find a getter for path one in proxy type com.company.A
[ERROR] [gwtmodule] - Could not find a getter for path two in proxy type com.company.A
[ERROR] [gwtmodule] - Could not find a getter for path three in proxy type com.company.A
はGWT 2.2でこの作品を作るための方法はありますか?
おかげであります。 – Stevko