java.lang.Objectjava.awt.Component
java.awt.Choice
public class Choice
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:
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.
| 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 this Choice 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. |
|
|
getListeners(Class<T> listenerType)
Returns an array of all the objects currently registered as FooListeners
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(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 registered
ItemListener 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.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public Choice()
throws HeadlessException
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.
HeadlessException - if GraphicsEnvironment.isHeadless()
returns trueGraphicsEnvironment.isHeadless(),
select(int),
select(java.lang.String)| Method Detail |
|---|
public void addNotify()
Choice's peer. This peer allows us
to change the look
of the Choice without changing its functionality.
public int getItemCount()
Choice menu.
Choice menugetItem(int)@Deprecated public int countItems()
getItemCount().
public String getItem(int index)
Choice menu.
index - the index at which to begingetItemCount()public void add(String item)
Choice menu.
item - the item to be added
NullPointerException - if the item's value is
nullpublic void addItem(String item)
add method instead.
Adds an item to this Choice menu.
item - the item to be added
NullPointerException - if the item's value is equal to
nullpublic void insert(String item, int index)
index 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.
item - the non-null item to be insertedindex - the position at which the item should be inserted
IllegalArgumentException - if index is less than 0public void remove(String item)
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).
item - the item to remove from this Choice menu
IllegalArgumentException - if the item doesn't
exist in the choice menupublic void remove(int position)
position - the position of the item
IndexOutOfBoundsException - if the specified
position is out of boundspublic void removeAll()
remove(java.lang.String)public String getSelectedItem()
getSelectedIndex()public Object[] getSelectedObjects()
null.
getSelectedObjects in interface ItemSelectableItemSelectablepublic int getSelectedIndex()
getSelectedItem()public void select(int pos)
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 an
ItemEvent is by user interaction.
pos - the positon of the selected item
IllegalArgumentException - if the specified
position is greater than the
number of items or less than zerogetSelectedItem(),
getSelectedIndex()public void select(String str)
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 an
ItemEvent is by user interaction.
str - the specified stringgetSelectedItem(),
getSelectedIndex()public void addItemListener(ItemListener l)
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.
addItemListener in interface ItemSelectablel - the item listenerremoveItemListener(java.awt.event.ItemListener),
getItemListeners(),
select(int),
ItemEvent,
ItemListenerpublic void removeItemListener(ItemListener l)
Choice menu.
If l is null, no exception is thrown and no
action is performed.
removeItemListener in interface ItemSelectablel - the item listeneraddItemListener(java.awt.event.ItemListener),
getItemListeners(),
ItemEvent,
ItemListenerpublic ItemListener[] getItemListeners()
ItemListeners
or an empty array if no item
listeners are currently registeredaddItemListener(java.awt.event.ItemListener),
removeItemListener(java.awt.event.ItemListener),
ItemEvent,
ItemListenerpublic <T extends EventListener> T[] getListeners(Class<T> listenerType)
FooListeners
upon this Choice.
FooListeners are registered using the
addFooListener method.
You can specify the listenerType argument
with a class literal, such as
FooListener.class.
For example, you can query a
Choice c
for its item listeners with the following code:
getListeners in class ComponentlistenerType - the type of listeners requested; this parameter
should specify an interface that descends from
java.util.EventListener
FooListeners on this choice,
or an empty array if no such
listeners have been added
ClassCastException - if listenerType
doesn't specify a class or interface that implements
java.util.EventListenergetItemListeners()protected void processEvent(AWTEvent e)
ItemEvent, it invokes the
processItemEvent 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.
processEvent in class Componente - the eventItemEvent,
processItemEvent(java.awt.event.ItemEvent)protected void processItemEvent(ItemEvent e)
Choice
menu by dispatching them to any registered
ItemListener objects.
This method is not called unless item events are enabled for this component. Item events are enabled when one of the following occurs:
ItemListener object is registered
via addItemListener.
enableEvents.
Note that if the event parameter is null
the behavior is unspecified and may result in an
exception.
e - the item eventItemEvent,
ItemListener,
addItemListener(ItemListener),
Component.enableEvents(long)protected String paramString()
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 be
null.
paramString in class ComponentChoice menupublic AccessibleContext getAccessibleContext()
AccessibleContext associated with this
Choice. For Choice components,
the AccessibleContext takes the form of an
AccessibleAWTChoice. A new AccessibleAWTChoice
instance is created if necessary.
getAccessibleContext in interface AccessiblegetAccessibleContext in class ComponentAccessibleAWTChoice that serves as the
AccessibleContext of this ChoiceCes informations proviennent du site de http://java.sun.com
Le contenu de cette page provient du site de Sun, et est généré depuis un cache sur l'infobrol après certains traitements automatisés. La présentation peut donc différer du document original, mais le contenu aussi. Vous pouvez utiliser ce bouton pour afficher la page originale du site de Sun :
Maintenir les pages en cache sur différents sites peut offrir plus de disponibilité.
Chaque page est indexée dans la base de donnée, ce qui permet de retrouver facilement les informations, au moyen des sommaires, du moteur de recherche interne, etc.
Des facilités sont mises en place pour que les membres de l'infobrol puissent effectuer des traductions en français des différents documents. Ceci devrait permettre aux débutants en programmation Java de consulter les API en français s'ils maîtrisent moins bien la langue de Shakespeare. Dans le cas où une traduction a été soumise, elle est disponible au moyen d'un lien en bas de page. Si la traduction a été validée, la page s'affiche par défaut en français, et un lien en bas de page permet d'atteindre la version en anglais.
Le code sur l'infobrol est automatiquement coloré selon la syntaxe, et les différents mots clés sont transformés en liens pour accéder rapidement aux informations.
Vous avez la possibilité de partager vos expériences en proposant vos propres extraits de code en utilisant le bouton "ajouter un commentaire" en bas de page. Si vous visitez simplement l'infobrol, vous avez déjà accès à cette fonction, mais si vous étes membre du brol, vous pouvez en plus utiliser des boutons supplémentaires de mise en forme, dont la coloration automatique de vos extraits de codes.
Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.
6 mots clés dont 0 définis manuellement (plus d'information...).
Avertissement
Cette page ne possède pas encore de mots clés manuels, ceci est donc un exemple automatique (les niveaux de pertinence sont fictifs, mais les liens sont valables). Pour tester le nuage avec une page qui contient des mots définis manuellement, vous pouvez cliquer ici.Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher le nuage de mots clés.
Recherche (afficher)
Utilisateur (masquer)
Navigation (masquer)
Apparence (afficher)
Stats (afficher)
Citation (masquer)