org.apache.pivot.wtk
Class ComponentDataListener.Adapter

java.lang.Object
  extended by org.apache.pivot.wtk.ComponentDataListener.Adapter
All Implemented Interfaces:
ComponentDataListener
Enclosing interface:
ComponentDataListener

public static class ComponentDataListener.Adapter
extends Object
implements ComponentDataListener

Component data listener adapter.


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentDataListener
ComponentDataListener.Adapter
 
Constructor Summary
ComponentDataListener.Adapter()
           
 
Method Summary
 void valueAdded(Component component, String key)
          Called when a value has been added to a component's user data dictionary.
 void valueRemoved(Component component, String key, Object value)
          Called when a value has been removed from a component's user data dictionary.
 void valueUpdated(Component component, String key, Object previousValue)
          Called when a value has been updated in a component's user data dictionary.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ComponentDataListener.Adapter

public ComponentDataListener.Adapter()
Method Detail

valueAdded

public void valueAdded(Component component,
                       String key)
Description copied from interface: ComponentDataListener
Called when a value has been added to a component's user data dictionary.

Specified by:
valueAdded in interface ComponentDataListener

valueUpdated

public void valueUpdated(Component component,
                         String key,
                         Object previousValue)
Description copied from interface: ComponentDataListener
Called when a value has been updated in a component's user data dictionary.

Specified by:
valueUpdated in interface ComponentDataListener

valueRemoved

public void valueRemoved(Component component,
                         String key,
                         Object value)
Description copied from interface: ComponentDataListener
Called when a value has been removed from a component's user data dictionary.

Specified by:
valueRemoved in interface ComponentDataListener