You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 20, 2019. It is now read-only.
Ángel Serrano edited this page Oct 17, 2013
·
4 revisions
A setter/getter is not defined for some attribute in some class of the model.
Remember, for each attribute annotated with @Param, it must exist a getter and a setter for the class, with the same name as the field. For example, for:
@Param
private boolean enabled;
There must be:
publicbooleanisEnabled(){
returnenabled;
}
// getEnabled() would also be validpublicvoidsetEnabled(booleanenabled){
this.enabled = enabled;
}
An enum is missing the @Reflectable
In order to instantiate an Enum in GWT, all enum must been annotated with @Reflectable
@ReflectablepublicenumComparator {
GREATER, GREATER_EQUAL, EQUAL, LESS_EQUAL, LESS, DIFFERENT
}