|
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD | |||||||
public interface DataBindingListener
A listener which will be notified of events generated during data binding
| Method Summary | |
|---|---|
void
|
afterBinding(java.lang.Object obj, java.lang.String propertyName)
Called after data binding has been imposed on a property |
java.lang.Boolean
|
beforeBinding(java.lang.Object obj, java.lang.String propertyName, java.lang.Object value)
Called when data binding is about to imposed on a property |
void
|
bindingError(BindingError error)
Called when an error occurs binding to a property |
| Method Detail |
|---|
public void afterBinding(java.lang.Object obj, java.lang.String propertyName)
obj - The object data binding is being imposed uponpropertyName - The name of the property that was bound to
public java.lang.Boolean beforeBinding(java.lang.Object obj, java.lang.String propertyName, java.lang.Object value)
obj - The object data binding is being imposed uponpropertyName - The name of the property being bound tovalue - The value of the property being bound
public void bindingError(BindingError error)
error - encapsulates information about the binding error
Groovy Documentation