I am trying to bind a field of the primitive type "int" to an editor. My editor extends ValueBox<Integer>
, since generics in Java can only use object types.
When I compile my application, I get the following error:
00:00:18,915 [ERROR] Found unexpected type int while evauating path "cadastralDivisionCode" using getter expression ""
Changing the getter and the setter to use an Integer object, does the trick. Is there any way to use a primitive type in the GWT 2.1 editor framework?