Interface BindingListener
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
AbstractBindingListener
BindingListeners
are registered on Bindings
or BindingGroups
to listen for changes to the state of Bindings
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
bindingBecameBound
(Binding binding) Notification that aBinding
has been bound.void
bindingBecameUnbound
(Binding binding) Notification that aBinding
has been unbound.void
sourceChanged
(Binding binding, PropertyStateEvent event) Notification that the source property of aBinding
has fired aPropertyStateEvent
for theBinding's
source object.void
Notification that the source and target of aBinding
have been made in sync.void
syncFailed
(Binding binding, Binding.SyncFailure failure) Notification that theBinding
attempted to sync the source and target, but the sync failed.void
targetChanged
(Binding binding, PropertyStateEvent event) Notification that the target property of aBinding
has fired aPropertyStateEvent
for theBinding's
target object.
-
Method Details
-
bindingBecameBound
Notification that aBinding
has been bound.- Parameters:
binding
- theBinding
-
bindingBecameUnbound
Notification that aBinding
has been unbound.- Parameters:
binding
- theBinding
-
syncFailed
Notification that theBinding
attempted to sync the source and target, but the sync failed.- Parameters:
binding
- theBinding
failure
- the reason the sync failed
-
synced
Notification that the source and target of aBinding
have been made in sync.- Parameters:
binding
- theBinding
-
sourceChanged
Notification that the source property of aBinding
has fired aPropertyStateEvent
for theBinding's
source object.- Parameters:
binding
- theBinding
-
targetChanged
Notification that the target property of aBinding
has fired aPropertyStateEvent
for theBinding's
target object.- Parameters:
binding
- theBinding
-