JavaTM 2 Platform
Std. Ed. v1.3.1

Uses of Interface
java.awt.event.ItemListener

Packages that use ItemListener
java.awt Contains all of the classes for creating user interfaces and for painting graphics and images. 
javax.swing Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms. 
javax.swing.plaf.basic Provides user interface objects built according to the Basic look-and-feel. 
 

Uses of ItemListener in java.awt
 

Classes in java.awt that implement ItemListener
 class AWTEventMulticaster
          A class which implements efficient and thread-safe multi-cast event dispatching for the AWT events defined in the java.awt.event package.
protected  class Checkbox.AccessibleAWTCheckbox
          This class implements accessibility support for the Checkbox class.
protected  class List.AccessibleAWTList
          This class implements accessibility support for the List class.
 

Methods in java.awt that return ItemListener
static ItemListener AWTEventMulticaster.add(ItemListener a, ItemListener b)
          Adds item-listener-a with item-listener-b and returns the resulting multicast listener.
static ItemListener AWTEventMulticaster.remove(ItemListener l, ItemListener oldl)
          Removes the old item-listener from item-listener-l and returns the resulting multicast listener.
 

Methods in java.awt with parameters of type ItemListener
 void Checkbox.addItemListener(ItemListener l)
          Adds the specified item listener to receive item events from this check box.
 void Checkbox.removeItemListener(ItemListener l)
          Removes the specified item listener so that the item listener no longer receives item events from this check box.
static ItemListener AWTEventMulticaster.add(ItemListener a, ItemListener b)
          Adds item-listener-a with item-listener-b and returns the resulting multicast listener.
static ItemListener AWTEventMulticaster.remove(ItemListener l, ItemListener oldl)
          Removes the old item-listener from item-listener-l and returns the resulting multicast listener.
 void List.addItemListener(ItemListener l)
          Adds the specified item listener to receive item events from this list.
 void List.removeItemListener(ItemListener l)
          Removes the specified item listener so that it no longer receives item events from this list.
 void Choice.addItemListener(ItemListener l)
          Adds the specified item listener to receive item events from this Choice menu.
 void Choice.removeItemListener(ItemListener l)
          Removes the specified item listener so that it no longer receives item events from this Choice menu.
 void ItemSelectable.addItemListener(ItemListener l)
          Add a listener to recieve item events when the state of an item changes.
 void ItemSelectable.removeItemListener(ItemListener l)
          Removes an item listener.
 void CheckboxMenuItem.addItemListener(ItemListener l)
          Adds the specified item listener to receive item events from this check box menu item.
 void CheckboxMenuItem.removeItemListener(ItemListener l)
          Removes the specified item listener so that it no longer receives item events from this check box menu item.
 

Uses of ItemListener in javax.swing
 

Classes in javax.swing that implement ItemListener
protected  class DefaultCellEditor.EditorDelegate
           
protected  class JCheckBox.AccessibleJCheckBox
          This class implements accessibility support for the JCheckBox class.
protected  class JRadioButton.AccessibleJRadioButton
          This class implements accessibility support for the JRadioButton class.
protected  class JToggleButton.AccessibleJToggleButton
          This class implements accessibility support for the JToggleButton class.
 

Fields in javax.swing declared as ItemListener
protected  ItemListener AbstractButton.itemListener
          The button model's ItemListener.
 

Methods in javax.swing that return ItemListener
protected  ItemListener AbstractButton.createItemListener()
           
 

Methods in javax.swing with parameters of type ItemListener
 void AbstractButton.addItemListener(ItemListener l)
          Adds an ItemListener to the checkbox.
 void AbstractButton.removeItemListener(ItemListener l)
          Removes an ItemListener from the button.
 void ButtonModel.addItemListener(ItemListener l)
          Adds an ItemListener to the button.
 void ButtonModel.removeItemListener(ItemListener l)
          Removes an ItemListener from the button.
 void JComboBox.addItemListener(ItemListener aListener)
          Adds an ItemListener.
 void JComboBox.removeItemListener(ItemListener aListener)
          Removes an ItemListener.
 void DefaultButtonModel.addItemListener(ItemListener l)
          Adds an ItemListener to the button.
 void DefaultButtonModel.removeItemListener(ItemListener l)
          Removes an ItemListener from the button.
 

Uses of ItemListener in javax.swing.plaf.basic
 

Classes in javax.swing.plaf.basic that implement ItemListener
 class BasicComboBoxUI.ItemHandler
          This listener watches for changes to the selection in the combo box and updates the display of the currently selected item.
protected  class BasicComboPopup.ItemHandler
          This listener watches for changes in the JComboBox's selection.
 

Fields in javax.swing.plaf.basic declared as ItemListener
protected  ItemListener BasicComboPopup.itemListener
           
protected  ItemListener BasicComboBoxUI.itemListener
           
 

Methods in javax.swing.plaf.basic that return ItemListener
protected  ItemListener BasicComboPopup.createItemListener()
          Creates an item listener that watches for changes in the selected item in the JComboBox.
protected  ItemListener BasicComboBoxUI.createItemListener()
          Creates the item listener that watches for updates in the current selection so that it can update the display.
 


JavaTM 2 Platform
Std. Ed. v1.3.1

Submit a bug or feature
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.

Java, Java 2D, and JDBC are trademarks or registered trademarks of Oracle and/or its affiliates, in the US and other countries.
Copyright © 1995, 2010 Oracle and/or its affiliates. All rights reserved.