cdx.scorebot.util.swing.binding
Interface BindingListener

All Known Implementing Classes:
BindingAdapter

public interface BindingListener

The listener interface for receiving binding events. The class that is interesting in processing a binding change event either implements this interface (and all the methods it contains) or extends the abstract BindingAdapter class (overriding only methods of interest).

The listener object created from that class is then registered with a component using the component's addBindingListener method. A binding event is generated immediately before the binding changes, immediately after the binding is changed, and immediately after the component's loaded from the changed binding.

Author:
David Underhill

Method Summary
 void bindingChanged(BindingEvent e)
          Invoked when the binding has just finished changing but before it is loaded.
 void bindingChanging(BindingEvent e)
          Invoked when the binding is about to change.
 void bindingLoaded(BindingEvent e)
          Invoked when the binding has finished changing and been loaded.
 

Method Detail

bindingChanging

void bindingChanging(BindingEvent e)
Invoked when the binding is about to change. See the class description for BindingEvent for a definition of binding event.


bindingChanged

void bindingChanged(BindingEvent e)
Invoked when the binding has just finished changing but before it is loaded. See the class description for BindingEvent for a definition of binding event.


bindingLoaded

void bindingLoaded(BindingEvent e)
Invoked when the binding has finished changing and been loaded. See the class description for BindingEvent for a definition of binding event.