Package | Description |
---|---|
org.jboss.errai.databinding.client | |
org.jboss.errai.databinding.client.api |
Modifier and Type | Method and Description |
---|---|
DataBinder |
DataBinderProvider.provide(Class<?>[] typeargs,
Annotation[] qualifiers) |
Modifier and Type | Method and Description |
---|---|
DataBinder<T> |
DataBinder.bind(com.google.gwt.user.client.ui.Widget widget,
String property)
Binds the provided widget to the specified property of the model instance
associated with this
DataBinder . |
DataBinder<T> |
DataBinder.bind(com.google.gwt.user.client.ui.Widget widget,
String property,
Converter converter)
Binds the provided widget to the specified property of the model instance
associated with this
DataBinder . |
DataBinder<T> |
DataBinder.bind(com.google.gwt.user.client.ui.Widget widget,
String property,
Converter converter,
boolean bindOnKeyUp)
Binds the provided widget to the specified property of the model instance
associated with this
DataBinder . |
static <T> DataBinder<T> |
DataBinder.forModel(T model)
Creates a
DataBinder for the provided model instance. |
static <T> DataBinder<T> |
DataBinder.forModel(T model,
InitialState initialState)
Creates a
DataBinder for the provided model instance, initializing
either model or UI widgets from the values defined by InitialState . |
static <T> DataBinder<T> |
DataBinder.forType(Class<T> modelType)
Creates a
DataBinder for a new model instance of the provided type. |
static <T> DataBinder<T> |
DataBinder.forType(Class<T> modelType,
InitialState initialState)
Creates a
DataBinder for a new model instance of the provided type,
initializing either model or UI widgets from the values defined by
InitialState . |
DataBinder<T> |
DataBinder.unbind()
Unbinds all widgets bound by previous calls to
#bind(HasValue, Object, String) . |
DataBinder<T> |
DataBinder.unbind(String property)
Unbinds all widgets bound to the specified model property by previous calls
to
#bind(HasValue, Object, String) . |
Copyright © 2013-2015 JBoss, a division of Red Hat. All Rights Reserved.