- java.lang.Object
-
- java.awt.MenuComponent
-
- java.awt.MenuItem
-
- java.awt.Menu
-
- All Implemented Interfaces:
- MenuContainer, Serializable, Accessible
- Direct Known Subclasses:
- PopupMenu
public class Menu extends MenuItem implements MenuContainer, Accessible
AMenu
object is a pull-down menu component that is deployed from a menu bar.A menu can optionally be a tear-off menu. A tear-off menu can be opened and dragged away from its parent menu bar or menu. It remains on the screen after the mouse button has been released. The mechanism for tearing off a menu is platform dependent, since the look and feel of the tear-off menu is determined by its peer. On platforms that do not support tear-off menus, the tear-off property is ignored.
Each item in a menu must belong to the
MenuItem
class. It can be an instance ofMenuItem
, a submenu (an instance ofMenu
), or a check box (an instance ofCheckboxMenuItem
).- Since:
- JDK1.0
- See Also:
MenuItem
,CheckboxMenuItem
, Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class and Description protected class
Menu.AccessibleAWTMenu
Inner class of Menu used to provide default support for accessibility.-
Nested classes/interfaces inherited from class java.awt.MenuItem
MenuItem.AccessibleAWTMenuItem
-
Nested classes/interfaces inherited from class java.awt.MenuComponent
MenuComponent.AccessibleAWTMenuComponent
-
-
Constructor Summary
Constructors Constructor and Description Menu()
Constructs a new menu with an empty label.Menu(String label)
Constructs a new menu with the specified label.Menu(String label, boolean tearOff)
Constructs a new menu with the specified label, indicating whether the menu can be torn off.
-
Method Summary
Methods Modifier and Type Method and Description MenuItem
add(MenuItem mi)
Adds the specified menu item to this menu.void
add(String label)
Adds an item with the specified label to this menu.void
addNotify()
Creates the menu's peer.void
addSeparator()
Adds a separator line, or a hypen, to the menu at the current position.int
countItems()
Deprecated.As of JDK version 1.1, replaced bygetItemCount()
.AccessibleContext
getAccessibleContext()
Gets the AccessibleContext associated with this Menu.MenuItem
getItem(int index)
Gets the item located at the specified index of this menu.int
getItemCount()
Get the number of items in this menu.void
insert(MenuItem menuitem, int index)
Inserts a menu item into this menu at the specified position.void
insert(String label, int index)
Inserts a menu item with the specified label into this menu at the specified position.void
insertSeparator(int index)
Inserts a separator at the specified position.boolean
isTearOff()
Indicates whether this menu is a tear-off menu.String
paramString()
Returns a string representing the state of thisMenu
.void
remove(int index)
Removes the menu item at the specified index from this menu.void
remove(MenuComponent item)
Removes the specified menu item from this menu.void
removeAll()
Removes all items from this menu.void
removeNotify()
Removes the menu's peer.-
Methods inherited from class java.awt.MenuItem
addActionListener, deleteShortcut, disable, disableEvents, enable, enable, enableEvents, getActionCommand, getActionListeners, getLabel, getListeners, getShortcut, isEnabled, processActionEvent, processEvent, removeActionListener, setActionCommand, setEnabled, setLabel, setShortcut
-
Methods inherited from class java.awt.MenuComponent
dispatchEvent, getFont, getName, getParent, getPeer, getTreeLock, postEvent, setFont, setName, toString
-
-
-
-
Constructor Detail
-
Menu
public Menu() throws HeadlessException
Constructs a new menu with an empty label. This menu is not a tear-off menu.- Throws:
HeadlessException
- if GraphicsEnvironment.isHeadless() returns true.- Since:
- JDK1.1
- See Also:
GraphicsEnvironment.isHeadless()
-
Menu
public Menu(String label) throws HeadlessException
Constructs a new menu with the specified label. This menu is not a tear-off menu.- Parameters:
label
- the menu's label in the menu bar, or in another menu of which this menu is a submenu.- Throws:
HeadlessException
- if GraphicsEnvironment.isHeadless() returns true.- See Also:
GraphicsEnvironment.isHeadless()
-
Menu
public Menu(String label, boolean tearOff) throws HeadlessException
Constructs a new menu with the specified label, indicating whether the menu can be torn off.Tear-off functionality may not be supported by all implementations of AWT. If a particular implementation doesn't support tear-off menus, this value is silently ignored.
- Parameters:
label
- the menu's label in the menu bar, or in another menu of which this menu is a submenu.tearOff
- iftrue
, the menu is a tear-off menu.- Throws:
HeadlessException
- if GraphicsEnvironment.isHeadless() returns true.- Since:
- JDK1.0.
- See Also:
GraphicsEnvironment.isHeadless()
-
-
Method Detail
-
addNotify
public void addNotify()
Creates the menu's peer. The peer allows us to modify the appearance of the menu without changing its functionality.
-
removeNotify
public void removeNotify()
Removes the menu's peer. The peer allows us to modify the appearance of the menu without changing its functionality.- Overrides:
removeNotify
in classMenuComponent
-
isTearOff
public boolean isTearOff()
Indicates whether this menu is a tear-off menu.Tear-off functionality may not be supported by all implementations of AWT. If a particular implementation doesn't support tear-off menus, this value is silently ignored.
- Returns:
true
if this is a tear-off menu;false
otherwise.
-
getItemCount
public int getItemCount()
Get the number of items in this menu.- Returns:
- the number of items in this menu.
- Since:
- JDK1.1
-
countItems
@Deprecated public int countItems()
Deprecated. As of JDK version 1.1, replaced bygetItemCount()
.
-
getItem
public MenuItem getItem(int index)
Gets the item located at the specified index of this menu.- Parameters:
index
- the position of the item to be returned.- Returns:
- the item located at the specified index.
-
add
public MenuItem add(MenuItem mi)
Adds the specified menu item to this menu. If the menu item has been part of another menu, removes it from that menu.- Parameters:
mi
- the menu item to be added- Returns:
- the menu item added
- See Also:
insert(java.lang.String, int)
,insert(java.awt.MenuItem, int)
-
add
public void add(String label)
Adds an item with the specified label to this menu.- Parameters:
label
- the text on the item- See Also:
insert(java.lang.String, int)
,insert(java.awt.MenuItem, int)
-
insert
public void insert(MenuItem menuitem, int index)
Inserts a menu item into this menu at the specified position.- Parameters:
menuitem
- the menu item to be inserted.index
- the position at which the menu item should be inserted.- Throws:
IllegalArgumentException
- if the value ofindex
is less than zero- Since:
- JDK1.1
- See Also:
add(java.lang.String)
,add(java.awt.MenuItem)
-
insert
public void insert(String label, int index)
Inserts a menu item with the specified label into this menu at the specified position. This is a convenience method forinsert(menuItem, index)
.- Parameters:
label
- the text on the itemindex
- the position at which the menu item should be inserted- Throws:
IllegalArgumentException
- if the value ofindex
is less than zero- Since:
- JDK1.1
- See Also:
add(java.lang.String)
,add(java.awt.MenuItem)
-
addSeparator
public void addSeparator()
Adds a separator line, or a hypen, to the menu at the current position.- See Also:
insertSeparator(int)
-
insertSeparator
public void insertSeparator(int index)
Inserts a separator at the specified position.- Parameters:
index
- the position at which the menu separator should be inserted.- Throws:
IllegalArgumentException
- if the value ofindex
is less than 0.- Since:
- JDK1.1
- See Also:
addSeparator()
-
remove
public void remove(int index)
Removes the menu item at the specified index from this menu.- Parameters:
index
- the position of the item to be removed.
-
remove
public void remove(MenuComponent item)
Removes the specified menu item from this menu.- Specified by:
remove
in interfaceMenuContainer
- Parameters:
item
- the item to be removed from the menu. Ifitem
isnull
or is not in this menu, this method does nothing.
-
removeAll
public void removeAll()
Removes all items from this menu.- Since:
- JDK1.0.
-
paramString
public String paramString()
Returns a string representing the state of thisMenu
. 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
in classMenuItem
- Returns:
- the parameter string of this menu
-
getAccessibleContext
public AccessibleContext getAccessibleContext()
Gets the AccessibleContext associated with this Menu. For menus, the AccessibleContext takes the form of an AccessibleAWTMenu. A new AccessibleAWTMenu instance is created if necessary.- Specified by:
getAccessibleContext
in interfaceAccessible
- Overrides:
getAccessibleContext
in classMenuItem
- Returns:
- an AccessibleAWTMenu that serves as the AccessibleContext of this Menu
- Since:
- 1.3
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
05/11/2024 15:03:12 Cette version de la page est en cache (à la date du 05/11/2024 15:03:12) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 28/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/awt/Menu.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.