Choice (Java 2 Platform SE 5.0) (original) (raw)
java.awt
Class Choice
java.lang.Object
java.awt.Component
java.awt.Choice
All Implemented Interfaces:
ImageObserver, ItemSelectable, MenuContainer, Serializable, Accessible
public class Choice
extends Component
implements ItemSelectable, Accessible
The Choice
class presents a pop-up menu of choices. The current choice is displayed as the title of the menu.
The following code example produces a pop-up menu:
Choice ColorChooser = new Choice(); ColorChooser.add("Green"); ColorChooser.add("Red"); ColorChooser.add("Blue");
After this choice menu has been added to a panel, it appears as follows in its normal state:
In the picture, "Green"
is the current choice. Pushing the mouse button down on the object causes a menu to appear with the current choice highlighted.
Some native platforms do not support arbitrary resizing of Choice
components and the behavior of setSize()/getSize()
is bound by such limitations. Native GUI Choice
components' size are often bound by such attributes as font size and length of items contained within the Choice
.
Since:
JDK1.0
See Also:
Nested Class Summary | |
---|---|
protected class | Choice.AccessibleAWTChoice This class implements accessibility support for the Choice class. |
Nested classes/interfaces inherited from class java.awt.Component |
---|
Component.AccessibleAWTComponent, Component.BltBufferStrategy, Component.FlipBufferStrategy |
Field Summary |
---|
Fields inherited from class java.awt.Component |
---|
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
Fields inherited from interface java.awt.image.ImageObserver |
---|
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
Constructor Summary |
---|
Choice() Creates a new choice menu. |
Method Summary | |
---|---|
void | add(String item) Adds an item to this Choice menu. |
void | addItem(String item) Obsolete as of Java 2 platform v1.1. |
void | addItemListener(ItemListener l) Adds the specified item listener to receive item events from this Choice menu. |
void | addNotify() Creates the Choice's peer. |
int | countItems() Deprecated. As of JDK version 1.1, replaced by getItemCount(). |
AccessibleContext | getAccessibleContext() Gets the AccessibleContext associated with this Choice. |
String | getItem(int index) Gets the string at the specified index in thisChoice menu. |
int | getItemCount() Returns the number of items in this Choice menu. |
ItemListener[] | getItemListeners() Returns an array of all the item listeners registered on this choice. |
<T extends EventListener> T[] | getListeners(Class listenerType) Returns an array of all the objects currently registered as _Foo_Listeners upon this Choice. |
int | getSelectedIndex() Returns the index of the currently selected item. |
String | getSelectedItem() Gets a representation of the current choice as a string. |
Object[] | getSelectedObjects() Returns an array (length 1) containing the currently selected item. |
void | [insert](../../java/awt/Choice.html#insert%28java.lang.String, int%29)(String item, int index) Inserts the item into this choice at the specified position. |
protected String | paramString() Returns a string representing the state of this Choice menu. |
protected void | processEvent(AWTEvent e) Processes events on this choice. |
protected void | processItemEvent(ItemEvent e) Processes item events occurring on this Choice menu by dispatching them to any registeredItemListener objects. |
void | remove(int position) Removes an item from the choice menu at the specified position. |
void | remove(String item) Removes the first occurrence of item from the Choice menu. |
void | removeAll() Removes all items from the choice menu. |
void | removeItemListener(ItemListener l) Removes the specified item listener so that it no longer receives item events from this Choice menu. |
void | select(int pos) Sets the selected item in this Choice menu to be the item at the specified position. |
void | select(String str) Sets the selected item in this Choice menu to be the item whose name is equal to the specified string. |
Methods inherited from class java.awt.Component |
---|
[action](../../java/awt/Component.html#action%28java.awt.Event, java.lang.Object%29), add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, addPropertyChangeListener, [addPropertyChangeListener](../../java/awt/Component.html#addPropertyChangeListener%28java.lang.String, java.beans.PropertyChangeListener%29), applyComponentOrientation, areFocusTraversalKeysSet, bounds, [checkImage](../../java/awt/Component.html#checkImage%28java.awt.Image, java.awt.image.ImageObserver%29), [checkImage](../../java/awt/Component.html#checkImage%28java.awt.Image, int, int, java.awt.image.ImageObserver%29), [coalesceEvents](../../java/awt/Component.html#coalesceEvents%28java.awt.AWTEvent, java.awt.AWTEvent%29), [contains](../../java/awt/Component.html#contains%28int, int%29), contains, createImage, [createImage](../../java/awt/Component.html#createImage%28int, int%29), [createVolatileImage](../../java/awt/Component.html#createVolatileImage%28int, int%29), [createVolatileImage](../../java/awt/Component.html#createVolatileImage%28int, int, java.awt.ImageCapabilities%29), deliverEvent, disable, disableEvents, dispatchEvent, doLayout, enable, enable, enableEvents, enableInputMethods, [firePropertyChange](../../java/awt/Component.html#firePropertyChange%28java.lang.String, boolean, boolean%29), [firePropertyChange](../../java/awt/Component.html#firePropertyChange%28java.lang.String, byte, byte%29), [firePropertyChange](../../java/awt/Component.html#firePropertyChange%28java.lang.String, char, char%29), [firePropertyChange](../../java/awt/Component.html#firePropertyChange%28java.lang.String, double, double%29), [firePropertyChange](../../java/awt/Component.html#firePropertyChange%28java.lang.String, float, float%29), [firePropertyChange](../../java/awt/Component.html#firePropertyChange%28java.lang.String, int, int%29), [firePropertyChange](../../java/awt/Component.html#firePropertyChange%28java.lang.String, long, long%29), [firePropertyChange](../../java/awt/Component.html#firePropertyChange%28java.lang.String, java.lang.Object, java.lang.Object%29), [firePropertyChange](../../java/awt/Component.html#firePropertyChange%28java.lang.String, short, short%29), getAlignmentX, getAlignmentY, getBackground, getBounds, getBounds, getColorModel, [getComponentAt](../../java/awt/Component.html#getComponentAt%28int, int%29), getComponentAt, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusCycleRootAncestor, getFocusListeners, getFocusTraversalKeys, getFocusTraversalKeysEnabled, getFont, getFontMetrics, getForeground, getGraphics, getGraphicsConfiguration, getHeight, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputContext, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocale, getLocation, getLocation, getLocationOnScreen, getMaximumSize, getMinimumSize, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPeer, getPreferredSize, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getSize, getToolkit, getTreeLock, getWidth, getX, getY, [gotFocus](../../java/awt/Component.html#gotFocus%28java.awt.Event, java.lang.Object%29), handleEvent, hasFocus, hide, [imageUpdate](../../java/awt/Component.html#imageUpdate%28java.awt.Image, int, int, int, int, int%29), [inside](../../java/awt/Component.html#inside%28int, int%29), invalidate, isBackgroundSet, isCursorSet, isDisplayable, isDoubleBuffered, isEnabled, isFocusable, isFocusCycleRoot, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isOpaque, isPreferredSizeSet, isShowing, isValid, isVisible, [keyDown](../../java/awt/Component.html#keyDown%28java.awt.Event, int%29), [keyUp](../../java/awt/Component.html#keyUp%28java.awt.Event, int%29), layout, list, list, [list](../../java/awt/Component.html#list%28java.io.PrintStream, int%29), list, [list](../../java/awt/Component.html#list%28java.io.PrintWriter, int%29), [locate](../../java/awt/Component.html#locate%28int, int%29), location, [lostFocus](../../java/awt/Component.html#lostFocus%28java.awt.Event, java.lang.Object%29), minimumSize, [mouseDown](../../java/awt/Component.html#mouseDown%28java.awt.Event, int, int%29), [mouseDrag](../../java/awt/Component.html#mouseDrag%28java.awt.Event, int, int%29), [mouseEnter](../../java/awt/Component.html#mouseEnter%28java.awt.Event, int, int%29), [mouseExit](../../java/awt/Component.html#mouseExit%28java.awt.Event, int, int%29), [mouseMove](../../java/awt/Component.html#mouseMove%28java.awt.Event, int, int%29), [mouseUp](../../java/awt/Component.html#mouseUp%28java.awt.Event, int, int%29), [move](../../java/awt/Component.html#move%28int, int%29), nextFocus, paint, paintAll, postEvent, preferredSize, [prepareImage](../../java/awt/Component.html#prepareImage%28java.awt.Image, java.awt.image.ImageObserver%29), [prepareImage](../../java/awt/Component.html#prepareImage%28java.awt.Image, int, int, java.awt.image.ImageObserver%29), print, printAll, processComponentEvent, processFocusEvent, processHierarchyBoundsEvent, processHierarchyEvent, processInputMethodEvent, processKeyEvent, processMouseEvent, processMouseMotionEvent, processMouseWheelEvent, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removeNotify, removePropertyChangeListener, [removePropertyChangeListener](../../java/awt/Component.html#removePropertyChangeListener%28java.lang.String, java.beans.PropertyChangeListener%29), repaint, [repaint](../../java/awt/Component.html#repaint%28int, int, int, int%29), repaint, [repaint](../../java/awt/Component.html#repaint%28long, int, int, int, int%29), requestFocus, requestFocus, requestFocusInWindow, requestFocusInWindow, [reshape](../../java/awt/Component.html#reshape%28int, int, int, int%29), resize, [resize](../../java/awt/Component.html#resize%28int, int%29), setBackground, [setBounds](../../java/awt/Component.html#setBounds%28int, int, int, int%29), setBounds, setComponentOrientation, setCursor, setDropTarget, setEnabled, setFocusable, [setFocusTraversalKeys](../../java/awt/Component.html#setFocusTraversalKeys%28int, java.util.Set%29), setFocusTraversalKeysEnabled, setFont, setForeground, setIgnoreRepaint, setLocale, [setLocation](../../java/awt/Component.html#setLocation%28int, int%29), setLocation, setMaximumSize, setMinimumSize, setName, setPreferredSize, setSize, [setSize](../../java/awt/Component.html#setSize%28int, int%29), setVisible, show, show, size, toString, transferFocus, transferFocusBackward, transferFocusUpCycle, update, validate |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, [wait](../../java/lang/Object.html#wait%28long, int%29) |
Constructor Detail |
---|
Choice
public Choice() throws HeadlessException
Creates a new choice menu. The menu initially has no items in it.
By default, the first item added to the choice menu becomes the selected item, until a different selection is made by the user by calling one of the select
methods.
Throws:
[HeadlessException](../../java/awt/HeadlessException.html "class in java.awt")
- if GraphicsEnvironment.isHeadless() returns true
See Also:
GraphicsEnvironment.isHeadless(), select(int), select(java.lang.String)
Method Detail |
---|
addNotify
public void addNotify()
Creates the Choice
's peer. This peer allows us to change the look of the Choice
without changing its functionality.
Overrides:
[addNotify](../../java/awt/Component.html#addNotify%28%29)
in class [Component](../../java/awt/Component.html "class in java.awt")
See Also:
Toolkit.createChoice(java.awt.Choice), Component.getToolkit()
getItemCount
public int getItemCount()
Returns the number of items in this Choice
menu.
Returns:
the number of items in this Choice
menu
Since:
JDK1.1
See Also:
countItems
@Deprecated public int countItems()
Deprecated. As of JDK version 1.1, replaced by getItemCount()
.
getItem
public String getItem(int index)
Gets the string at the specified index in thisChoice
menu.
Parameters:
index
- the index at which to begin
See Also:
add
public void add(String item)
Adds an item to this Choice
menu.
Parameters:
item
- the item to be added
Throws:
[NullPointerException](../../java/lang/NullPointerException.html "class in java.lang")
- if the item's value isnull
Since:
JDK1.1
addItem
public void addItem(String item)
Obsolete as of Java 2 platform v1.1. Please use theadd
method instead.
Adds an item to this Choice
menu.
Parameters:
item
- the item to be added
Throws:
[NullPointerException](../../java/lang/NullPointerException.html "class in java.lang")
- if the item's value is equal tonull
insert
public void insert(String item, int index)
Inserts the item into this choice at the specified position. Existing items at an index greater than or equal toindex
are shifted up by one to accommodate the new item. If index
is greater than or equal to the number of items in this choice,item
is added to the end of this choice.
If the item is the first one being added to the choice, then the item becomes selected. Otherwise, if the selected item was one of the items shifted, the first item in the choice becomes the selected item. If the selected item was no among those shifted, it remains the selected item.
Parameters:
item
- the non-null
item to be inserted
index
- the position at which the item should be inserted
Throws:
[IllegalArgumentException](../../java/lang/IllegalArgumentException.html "class in java.lang")
- if index is less than 0
remove
public void remove(String item)
Removes the first occurrence of item
from the Choice
menu. If the item being removed is the currently selected item, then the first item in the choice becomes the selected item. Otherwise, the currently selected item remains selected (and the selected index is updated accordingly).
Parameters:
item
- the item to remove from this Choice
menu
Throws:
[IllegalArgumentException](../../java/lang/IllegalArgumentException.html "class in java.lang")
- if the item doesn't exist in the choice menu
Since:
JDK1.1
remove
public void remove(int position)
Removes an item from the choice menu at the specified position. If the item being removed is the currently selected item, then the first item in the choice becomes the selected item. Otherwise, the currently selected item remains selected (and the selected index is
Parameters:
position
- the position of the item
Throws:
[IndexOutOfBoundsException](../../java/lang/IndexOutOfBoundsException.html "class in java.lang")
- if the specified position is out of bounds
Since:
JDK1.1
removeAll
public void removeAll()
Removes all items from the choice menu.
Since:
JDK1.1
See Also:
getSelectedItem
public String getSelectedItem()
Gets a representation of the current choice as a string.
Returns:
a string representation of the currently selected item in this choice menu
See Also:
getSelectedObjects
public Object[] getSelectedObjects()
Returns an array (length 1) containing the currently selected item. If this choice has no items, returns null
.
Specified by:
[getSelectedObjects](../../java/awt/ItemSelectable.html#getSelectedObjects%28%29)
in interface [ItemSelectable](../../java/awt/ItemSelectable.html "interface in java.awt")
See Also:
getSelectedIndex
public int getSelectedIndex()
Returns the index of the currently selected item. If nothing is selected, returns -1.
Returns:
the index of the currently selected item, or -1 if nothing is currently selected
See Also:
select
public void select(int pos)
Sets the selected item in this Choice
menu to be the item at the specified position.
Note that this method should be primarily used to initially select an item in this component. Programmatically calling this method will not trigger an ItemEvent
. The only way to trigger anItemEvent
is by user interaction.
Parameters:
pos
- the positon of the selected item
Throws:
[IllegalArgumentException](../../java/lang/IllegalArgumentException.html "class in java.lang")
- if the specified position is greater than the number of items or less than zero
See Also:
getSelectedItem(), getSelectedIndex()
select
public void select(String str)
Sets the selected item in this Choice
menu to be the item whose name is equal to the specified string. If more than one item matches (is equal to) the specified string, the one with the smallest index is selected.
Note that this method should be primarily used to initially select an item in this component. Programmatically calling this method will not trigger an ItemEvent
. The only way to trigger anItemEvent
is by user interaction.
Parameters:
str
- the specified string
See Also:
getSelectedItem(), getSelectedIndex()
addItemListener
public void addItemListener(ItemListener l)
Adds the specified item listener to receive item events from this Choice
menu. Item events are sent in response to user input, but not in response to calls to select
. If l is null
, no exception is thrown and no action is performed.
Specified by:
[addItemListener](../../java/awt/ItemSelectable.html#addItemListener%28java.awt.event.ItemListener%29)
in interface [ItemSelectable](../../java/awt/ItemSelectable.html "interface in java.awt")
Parameters:
l
- the item listener
Since:
JDK1.1
See Also:
removeItemListener(java.awt.event.ItemListener), getItemListeners(), select(int), ItemEvent, ItemListener
removeItemListener
public void removeItemListener(ItemListener l)
Removes the specified item listener so that it no longer receives item events from this Choice
menu. If l is null
, no exception is thrown and no action is performed.
Specified by:
[removeItemListener](../../java/awt/ItemSelectable.html#removeItemListener%28java.awt.event.ItemListener%29)
in interface [ItemSelectable](../../java/awt/ItemSelectable.html "interface in java.awt")
Parameters:
l
- the item listener
Since:
JDK1.1
See Also:
addItemListener(java.awt.event.ItemListener), getItemListeners(), ItemEvent, ItemListener
getItemListeners
public ItemListener[] getItemListeners()
Returns an array of all the item listeners registered on this choice.
Returns:
all of this choice's ItemListener
s or an empty array if no item listeners are currently registered
Since:
1.4
See Also:
addItemListener(java.awt.event.ItemListener), removeItemListener(java.awt.event.ItemListener), ItemEvent, ItemListener
getListeners
public <T extends EventListener> T[] getListeners(Class listenerType)
Returns an array of all the objects currently registered as _Foo_Listener
s upon this Choice
._Foo_Listener
s are registered using theadd_Foo_Listener
method.
You can specify the listenerType
argument with a class literal, such as_Foo_Listener.class
. For example, you can query aChoice
c
for its item listeners with the following code:
ItemListener[] ils = (ItemListener[])(c.getListeners(ItemListener.class));
If no such listeners exist, this method returns an empty array.
Overrides:
[getListeners](../../java/awt/Component.html#getListeners%28java.lang.Class%29)
in class [Component](../../java/awt/Component.html "class in java.awt")
Parameters:
listenerType
- the type of listeners requested; this parameter should specify an interface that descends fromjava.util.EventListener
Returns:
an array of all objects registered as_Foo_Listener
s on this choice, or an empty array if no such listeners have been added
Throws:
[ClassCastException](../../java/lang/ClassCastException.html "class in java.lang")
- if listenerType
doesn't specify a class or interface that implementsjava.util.EventListener
Since:
1.3
See Also:
processEvent
protected void processEvent(AWTEvent e)
Processes events on this choice. If the event is an instance of ItemEvent
, it invokes theprocessItemEvent
method. Otherwise, it calls its superclass's processEvent
method.
Note that if the event parameter is null
the behavior is unspecified and may result in an exception.
Overrides:
[processEvent](../../java/awt/Component.html#processEvent%28java.awt.AWTEvent%29)
in class [Component](../../java/awt/Component.html "class in java.awt")
Parameters:
e
- the event
Since:
JDK1.1
See Also:
ItemEvent, processItemEvent(java.awt.event.ItemEvent)
processItemEvent
protected void processItemEvent(ItemEvent e)
Processes item events occurring on this Choice
menu by dispatching them to any registeredItemListener
objects.
This method is not called unless item events are enabled for this component. Item events are enabled when one of the following occurs:
- An
ItemListener
object is registered viaaddItemListener
. - Item events are enabled via
enableEvents
.
Note that if the event parameter is null
the behavior is unspecified and may result in an exception.
Parameters:
e
- the item event
Since:
JDK1.1
See Also:
ItemEvent, ItemListener, addItemListener(ItemListener), Component.enableEvents(long)
paramString
protected String paramString()
Returns a string representing the state of this Choice
menu. This method is intended to be used only for debugging purposes, and the content and format of the returned string may vary between implementations. The returned string may be empty but may not benull
.
Overrides:
[paramString](../../java/awt/Component.html#paramString%28%29)
in class [Component](../../java/awt/Component.html "class in java.awt")
Returns:
the parameter string of this Choice
menu
getAccessibleContext
public AccessibleContext getAccessibleContext()
Gets the AccessibleContext
associated with this Choice
. For Choice
components, the AccessibleContext
takes the form of an AccessibleAWTChoice
. A new AccessibleAWTChoice
instance is created if necessary.
Specified by:
[getAccessibleContext](../../javax/accessibility/Accessible.html#getAccessibleContext%28%29)
in interface [Accessible](../../javax/accessibility/Accessible.html "interface in javax.accessibility")
Overrides:
[getAccessibleContext](../../java/awt/Component.html#getAccessibleContext%28%29)
in class [Component](../../java/awt/Component.html "class in java.awt")
Returns:
an AccessibleAWTChoice
that serves as the AccessibleContext
of this Choice
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.
Copyright © 2004, 2010 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.