문제입니다 : 나는 콩이 콩이 열거 속성이 있습니다GWT, 열거 경우 RadioButton 및 편집자 워크
enum E {
ONE, TWO, THREE;
}
class A implements Serializable {
public E foo;
}
I 사용자 편집이 빈을 수 있도록 GWT Editor framework을 사용하고 싶습니다
[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에서이 작품을 만들 수있는 방법이 있나요 :
public class P extends FlowPanel implements Editor<A> {
// ... UiBinder code here ...
@UiField RadioButton one, two, three;
// ...
}
나는 오류가있어?
감사가있다. – Stevko