Here is the problem: I have a bean and this bean have a enum property:
enum E {
ONE, TWO, THREE;
}
class A implements Serializable {
public E foo;
}
I'd like to use GWT Editor framework to let user edit this bean
public class P extends FlowPanel implements Editor<A> {
// ... UiBinder code here ...
@UiField RadioButton one, two, three;
// ...
}
I've got an error:
[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
Is there a way to make this work in GWT 2.2?