pivot.wtk
Class SpinnerItemListener.Adapter

java.lang.Object
  extended by pivot.wtk.SpinnerItemListener.Adapter
All Implemented Interfaces:
SpinnerItemListener
Enclosing interface:
SpinnerItemListener

public static class SpinnerItemListener.Adapter
extends Object
implements SpinnerItemListener

Adapts the SpinnerItemListener interface.

Author:
tvolkert

Nested Class Summary
 
Nested classes/interfaces inherited from interface pivot.wtk.SpinnerItemListener
SpinnerItemListener.Adapter
 
Constructor Summary
SpinnerItemListener.Adapter()
           
 
Method Summary
 void itemInserted(Spinner spinner, int index)
          Called when an item is inserted into the spinner data.
 void itemsCleared(Spinner spinner)
          Called when the spinner data has been cleared.
 void itemsRemoved(Spinner spinner, int index, int count)
          Called when items are removed from the spinner data.
 void itemsSorted(Spinner spinner)
          Called when the spinner data is sorted.
 void itemUpdated(Spinner spinner, int index)
          Called when an item is updated within the spinner data.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SpinnerItemListener.Adapter

public SpinnerItemListener.Adapter()
Method Detail

itemInserted

public void itemInserted(Spinner spinner,
                         int index)
Description copied from interface: SpinnerItemListener
Called when an item is inserted into the spinner data.

Specified by:
itemInserted in interface SpinnerItemListener

itemsRemoved

public void itemsRemoved(Spinner spinner,
                         int index,
                         int count)
Description copied from interface: SpinnerItemListener
Called when items are removed from the spinner data.

Specified by:
itemsRemoved in interface SpinnerItemListener

itemUpdated

public void itemUpdated(Spinner spinner,
                        int index)
Description copied from interface: SpinnerItemListener
Called when an item is updated within the spinner data.

Specified by:
itemUpdated in interface SpinnerItemListener

itemsCleared

public void itemsCleared(Spinner spinner)
Description copied from interface: SpinnerItemListener
Called when the spinner data has been cleared.

Specified by:
itemsCleared in interface SpinnerItemListener

itemsSorted

public void itemsSorted(Spinner spinner)
Description copied from interface: SpinnerItemListener
Called when the spinner data is sorted.

Specified by:
itemsSorted in interface SpinnerItemListener