Package com.google.gwt.uibinder.client
Annotation Type UiField
Marks fields in a UiBinder client that must be filled by the binder's
UiBinder.createAndBindUi(O)
method. If provided is true the field
creation is delegated to the client (owner).-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionboolean
If true, the field must be filled beforeUiBinder.createAndBindUi(O)
is called.
-
Element Details
-
provided
boolean providedIf true, the field must be filled beforeUiBinder.createAndBindUi(O)
is called. If false,UiBinder.createAndBindUi(O)
will fill the field, usually by callingGWT.create(java.lang.Class<?>)
.- Default:
false
-