Package com.google.gwt.uibinder.client
Annotation Type UiField
-
@Documented @Retention(RUNTIME) @Target(FIELD) public @interface UiFieldMarks fields in a UiBinder client that must be filled by the binder'sUiBinder.createAndBindUi(O)method. If provided is true the field creation is delegated to the client (owner).
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description booleanprovidedIf true, the field must be filled beforeUiBinder.createAndBindUi(O)is called.
-
-
-
Element Detail
-
provided
boolean provided
If 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
-
-