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 TypeMethodDescriptionvoidbindingBecameBound(Binding binding) Notification that aBindinghas been bound.voidbindingBecameUnbound(Binding binding) Notification that aBindinghas been unbound.voidsourceChanged(Binding binding, PropertyStateEvent event) Notification that the source property of aBindinghas fired aPropertyStateEventfor theBinding'ssource object.voidNotification that the source and target of aBindinghave been made in sync.voidsyncFailed(Binding binding, Binding.SyncFailure failure) Notification that theBindingattempted to sync the source and target, but the sync failed.voidtargetChanged(Binding binding, PropertyStateEvent event) Notification that the target property of aBindinghas fired aPropertyStateEventfor theBinding'starget object.
-
Method Details
-
bindingBecameBound
Notification that aBindinghas been bound.- Parameters:
binding- theBinding
-
bindingBecameUnbound
Notification that aBindinghas been unbound.- Parameters:
binding- theBinding
-
syncFailed
Notification that theBindingattempted to sync the source and target, but the sync failed.- Parameters:
binding- theBindingfailure- the reason the sync failed
-
synced
Notification that the source and target of aBindinghave been made in sync.- Parameters:
binding- theBinding
-
sourceChanged
Notification that the source property of aBindinghas fired aPropertyStateEventfor theBinding'ssource object.- Parameters:
binding- theBinding
-
targetChanged
Notification that the target property of aBindinghas fired aPropertyStateEventfor theBinding'starget object.- Parameters:
binding- theBinding
-