public interface

UiBinder

com.google.gwt.uibinder.client.UiBinder<U, O>

Class Overview

Interface implemented by classes that generate DOM or Widget structures from ui.xml template files, and which inject portions of the generated UI into the fields of an owner.

The generated UiBinder implementation will be based on an xml file resource in the same package as the owner class, with the same name and a "ui.xml" suffix. For example, a UI owned by class bar.baz.Foo will be sought in /bar/baz/Foo.ui.xml. (To use a different template file, put the UiTemplate annotation on your UiBinder interface declaration to point the code generator at it.)

Summary

Public Methods
abstract U createAndBindUi(O owner)
Creates and returns the root object of the UI, and fills any fields of owner tagged with UiField.

Public Methods

public abstract U createAndBindUi (O owner)

Creates and returns the root object of the UI, and fills any fields of owner tagged with UiField.

Parameters
owner the object whose @UiField needs will be filled