|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.awt.MenuComponent | +--java.awt.MenuItem | +--java.awt.Menu
Unsafe:
Field Summary | |
private static String |
base
|
(package private) boolean |
isHelpMenu
This field will be set to true
if the Menu in question is actually a help
menu. |
(package private) Vector |
items
A vector of the items that will be part of the Menu. |
private int |
menuSerializedDataVersion
The menu serialized Data Version. |
private static int |
nameCounter
|
private static long |
serialVersionUID
|
(package private) boolean |
tearOff
This field indicates whether the menu has the tear of property or not. |
Fields inherited from class java.awt.MenuItem |
actionCommand, actionListener, enabled, eventMask, label |
Fields inherited from class java.awt.MenuComponent |
accessibleContext, actionListenerK, appContext, font, itemListenerK, newEventsOnly, parent, peer |
Constructor Summary | |
Menu()
Suppressed: Constructs a new menu with an empty label. |
|
Menu(String label)
Suppressed: Constructs a new menu with the specified label. |
|
Menu(String label,
boolean tearOff)
Suppressed: Constructs a new menu with the specified label, indicating whether the menu can be torn off. |
Method Summary | |
MenuItem |
add(MenuItem mi)
Suppressed: Adds the specified menu item to this menu. |
void |
add(String label)
Suppressed: Adds an item with the specified label to this menu. |
void |
addNotify()
Suppressed: Creates the menu's peer. |
void |
addSeparator()
Suppressed: Adds a separator line, or a hypen, to the menu at the current position. |
(package private) String |
constructComponentName()
Construct a name for this MenuComponent. |
int |
countItems()
Suppressed: @deprecated As of JDK version 1.1, replaced by getItemCount() . |
(package private) int |
countItemsImpl()
|
(package private) void |
deleteShortcut(MenuShortcut s)
|
AccessibleContext |
getAccessibleContext()
Suppressed: Gets the AccessibleContext associated with this Menu. |
MenuItem |
getItem(int index)
Suppressed: Gets the item located at the specified index of this menu. |
int |
getItemCount()
Suppressed: Get the number of items in this menu. |
(package private) MenuItem |
getItemImpl(int index)
|
(package private) MenuItem |
getShortcutMenuItem(MenuShortcut s)
|
(package private) boolean |
handleShortcut(KeyEvent e)
|
private static void |
initIDs()
Initialize JNI field and method IDs |
void |
insert(MenuItem menuitem,
int index)
Suppressed: Inserts a menu item into this menu at the specified position. |
void |
insert(String label,
int index)
Suppressed: Inserts a menu item with the specified label into this menu at the specified position. |
void |
insertSeparator(int index)
Suppressed: Inserts a separator at the specified position. |
boolean |
isTearOff()
Suppressed: Indicates whether this menu is a tear-off menu. |
String |
paramString()
Suppressed: Returns a string representing the state of this Menu . |
private void |
readObject(ObjectInputStream s)
Reads the ObjectInputStream . |
void |
remove(int index)
Suppressed: Removes the menu item at the specified index from this menu. |
void |
remove(MenuComponent item)
Suppressed: Removes the specified menu item from this menu. |
void |
removeAll()
Suppressed: Removes all items from this menu. |
void |
removeNotify()
Suppressed: Removes the menu's peer. |
(package private) Enumeration |
shortcuts()
|
private void |
writeObject(ObjectOutputStream s)
Writes default serializable fields to stream. |
Methods inherited from class java.awt.MenuItem |
addActionListener, deleteShortcut, disable, disableEvents, doMenuEvent, enable, enable, enableEvents, eventEnabled, getActionCommand, getActionListeners, getLabel, getListeners, getShortcut, isEnabled, processActionEvent, processEvent, removeActionListener, setActionCommand, setEnabled, setLabel, setShortcut |
Methods inherited from class java.awt.MenuComponent |
dispatchEvent, dispatchEventImpl, getAccessibleIndexInParent, getAccessibleStateSet, getFont_NoClientCode, getFont, getName, getParent_NoClientCode, getParent, getPeer, getTreeLock, postEvent, setFont, setName, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.awt.MenuContainer |
getFont, postEvent |
Field Detail |
Vector items
countItems()
boolean tearOff
true
if the menu has the tear off
property and it will be set to false>
if it does not.
A torn off menu can be deleted by a user when
it is no longer needed.
isTearOff()
boolean isHelpMenu
true
if the Menu in question is actually a help
menu. Otherwise it will be set to
false
.
private static final String base
private static int nameCounter
private static final long serialVersionUID
private int menuSerializedDataVersion
Constructor Detail |
public Menu() throws HeadlessException
java.awt.GraphicsEnvironment#isHeadless
public Menu(String label) throws HeadlessException
label
- the menu's label in the menu bar, or in
another menu of which this menu is a submenu.java.awt.GraphicsEnvironment#isHeadless
public Menu(String label, boolean tearOff) throws HeadlessException
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.
label
- the menu's label in the menu bar, or in
another menu of which this menu is a submenu.tearOff
- if true
, the menu
is a tear-off menu.java.awt.GraphicsEnvironment#isHeadless
Method Detail |
String constructComponentName()
constructComponentName
in class MenuItem
MenuComponent
public void addNotify()
addNotify
in class MenuItem
public void removeNotify()
removeNotify
in class MenuComponent
public boolean isTearOff()
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.
true
if this is a tear-off menu;
false
otherwise.public int getItemCount()
public int countItems()
getItemCount()
.
final int countItemsImpl()
public MenuItem getItem(int index)
index
- the position of the item to be returned.
final MenuItem getItemImpl(int index)
public MenuItem add(MenuItem mi)
mi
- the menu item to be added
java.awt.Menu#insert(java.lang.String, int)
,
java.awt.Menu#insert(java.awt.MenuItem, int)
public void add(String label)
label
- the text on the itemjava.awt.Menu#insert(java.lang.String, int)
,
java.awt.Menu#insert(java.awt.MenuItem, int)
public void insert(MenuItem menuitem, int index)
menuitem
- the menu item to be inserted.index
- the position at which the menu
item should be inserted.java.awt.Menu#add(java.lang.String)
,
java.awt.Menu#add(java.awt.MenuItem)
public void insert(String label, int index)
insert(menuItem, index)
.
label
- the text on the itemindex
- the position at which the menu item
should be insertedjava.awt.Menu#add(java.lang.String)
,
java.awt.Menu#add(java.awt.MenuItem)
public void addSeparator()
java.awt.Menu#insertSeparator(int)
public void insertSeparator(int index)
index
- the position at which the
menu separator should be inserted.java.awt.Menu#addSeparator
public void remove(int index)
index
- the position of the item to be removed.public void remove(MenuComponent item)
remove
in interface MenuContainer
item
- the item to be removed from the menu.
If item
is null
or is not in this menu, this method does
nothing.public void removeAll()
boolean handleShortcut(KeyEvent e)
handleShortcut
in class MenuItem
MenuItem getShortcutMenuItem(MenuShortcut s)
getShortcutMenuItem
in class MenuItem
Enumeration shortcuts()
void deleteShortcut(MenuShortcut s)
deleteShortcut
in class MenuItem
private void writeObject(ObjectOutputStream s) throws IOException
s
- the ObjectOutputStream
to write
IOException
AWTEventMulticaster.save(ObjectOutputStream, String, EventListener)
,
readObject(java.io.ObjectInputStream)
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException, HeadlessException
ObjectInputStream
.
Unrecognized keys or values will be ignored.
s
- the ObjectInputStream
to read
IOException
ClassNotFoundException
HeadlessException
java.awt.GraphicsEnvironment#isHeadless
,
writeObject(java.io.ObjectOutputStream)
public String paramString()
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 MenuItem
private static void initIDs()
public AccessibleContext getAccessibleContext()
getAccessibleContext
in interface Accessible
getAccessibleContext
in class MenuItem
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |