Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

JSR-209 (Final Approval Ballot)

Uses of Class
javax.swing.JMenuItem

Packages that use JMenuItem
javax.swing Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms. 
 

Uses of JMenuItem in javax.swing
 

Subclasses of JMenuItem in javax.swing
 class JCheckBoxMenuItem
          A menu item that can be selected or deselected.
 class JMenu
          An implementation of a menu -- a popup window containing JMenuItems that is displayed when the user selects an item on the JMenuBar.
 class JRadioButtonMenuItem
          An implementation of a radio button menu item.
 

Methods in javax.swing that return JMenuItem
 JMenuItem JPopupMenu.add(JMenuItem menuItem)
          Appends the specified menu item to the end of this menu.
 JMenuItem JPopupMenu.add(java.lang.String s)
          Creates a new menu item with the specified text and appends it to the end of this menu.
 JMenuItem JPopupMenu.add(Action a)
          Appends a new menu item to the end of the menu which dispatches the specified Action object.
protected  JMenuItem JPopupMenu.createActionComponent(Action a)
          Factory method which creates the JMenuItem for Actions added to the JPopupMenu.
 JMenuItem JMenu.add(JMenuItem menuItem)
          Appends a menu item to the end of this menu.
 JMenuItem JMenu.add(java.lang.String s)
          Creates a new menu item with the specified text and appends it to the end of this menu.
 JMenuItem JMenu.add(Action a)
          Creates a new menu item attached to the specified Action object and appends it to the end of this menu.
protected  JMenuItem JMenu.createActionComponent(Action a)
          Factory method which creates the JMenuItem for Actions added to the JMenu.
 JMenuItem JMenu.insert(JMenuItem mi, int pos)
          Inserts the specified JMenuitem at a given position.
 JMenuItem JMenu.insert(Action a, int pos)
          Inserts a new menu item attached to the specified Action object at a given position.
 JMenuItem JMenu.getItem(int pos)
          Returns the JMenuItem at the specified position.
 

Methods in javax.swing with parameters of type JMenuItem
 JMenuItem JPopupMenu.add(JMenuItem menuItem)
          Appends the specified menu item to the end of this menu.
protected  java.beans.PropertyChangeListener JPopupMenu.createActionChangeListener(JMenuItem b)
          Returns a properly configured PropertyChangeListener which updates the control as changes to the Action occur.
 JMenuItem JMenu.add(JMenuItem menuItem)
          Appends a menu item to the end of this menu.
protected  java.beans.PropertyChangeListener JMenu.createActionChangeListener(JMenuItem b)
          Returns a properly configured PropertyChangeListener which updates the control as changes to the Action occur.
 JMenuItem JMenu.insert(JMenuItem mi, int pos)
          Inserts the specified JMenuitem at a given position.
 void JMenu.remove(JMenuItem item)
          Removes the specified menu item from this menu.
 


JSR-209 (Final Approval Ballot)

Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 209 specification.