|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcdx.scorebot.util.swing.binding.BindingAdapter
public abstract class BindingAdapter
An abstract adapter class for receiving binding events. The methods in this class are empty. This class exists as a convenience for creating listener objects. Extend this class to create a BindingListener and override the methods for the events of interest. (If you implement the BindingListener interface, you have to define all of the methods in it. This abstract class defines null methods for them all, so you can only have to define methods for events you care about.) Create a listener object using the extended class and then register it with a component using the component's addBindingListener method. A binding event is generated immediately before the binding changes and immediately after the binding is changed.
Constructor Summary | |
---|---|
BindingAdapter()
|
Method Summary | |
---|---|
void |
bindingChanged(BindingEvent e)
Invoked when the binding has just finished changing |
void |
bindingChanging(BindingEvent e)
Invoked when the binding is about to change |
void |
bindingLoaded(BindingEvent e)
Invoked when the binding has just finished loading |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public BindingAdapter()
Method Detail |
---|
public void bindingChanging(BindingEvent e)
bindingChanging
in interface BindingListener
public void bindingChanged(BindingEvent e)
bindingChanged
in interface BindingListener
public void bindingLoaded(BindingEvent e)
bindingLoaded
in interface BindingListener
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |