Open In App

Java AWT | Choice Class

Choice class is part of Java Abstract Window Toolkit(AWT). The Choice class presents a pop- up menu for the user, the user may select an item from the popup menu. The selected item appears on the top. The Choice class inherits the Component.

Constructor for the Choice class



Different Methods for the Choice Class

Method Explanation
add(String s) adds an item to this Choice menu.
addItemListener(ItemListener l) adds the specified item listener to receive item events from this Choice menu.
addNotify() creates the Choice’s peer.
getAccessibleContext() gets the AccessibleContext associated with this Choice.
getItem(int i) gets the string at the specified index in this Choice menu
getItemCount() returns the number of items in this Choice menu.
getItemListeners() returns an array of all the item listeners registered on this choice.
getListeners(Class l) returns an array of all the objects currently registered as FooListeners upon this Choice.
getSelectedIndex() returns the index of the currently selected item.
getSelectedItem() gets a representation of the current choice as a string.
insert(String s, int i) inserts the item into this choice at the specified position.
paramString() returns a string representing the state of this Choice menu.
processEvent(AWTEvent e) processes events on this choice.
processItemEvent(ItemEvent e) processes item events occurring on this Choice menu by dispatching them to any registered ItemListener objects.
remove(int p) removes an item from the choice menu at the specified position.
remove(String s) removes the first occurrence of item from the Choice menu.
removeAll() removes all items from the choice menu.
select(int p) sets the selected item in this Choice menu to be the item at the specified position.

Below programs illustrate the Choice class in Java AWT:



Note: The programs might not run in an online IDE please use an offline IDE.

Reference : https://docs.oracle.com/javase/7/docs/api/java/awt/Choice.html


Article Tags :