Java JMenu addRadioButtonMenuItem(ActionListener al, JMenu m, String label, String command, boolean b, ButtonGroup g)

Here you can find the source of addRadioButtonMenuItem(ActionListener al, JMenu m, String label, String command, boolean b, ButtonGroup g)

Description

add Radio Button Menu Item

License

Open Source License

Declaration

public static void addRadioButtonMenuItem(ActionListener al, JMenu m, String label, String command, boolean b,
            ButtonGroup g) 

Method Source Code

//package com.java2s;
/*/*from   www .ja v a 2 s. c o m*/
* Utils.java - SEdit, a tool to design and animate graphs in MadKit
* Copyright (C) 1998-2002 Jacques Ferber, Olivier Gutknecht
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*/

import java.awt.event.ActionListener;

import javax.swing.ButtonGroup;

import javax.swing.JMenu;

import javax.swing.JRadioButtonMenuItem;

public class Main {
    public static void addRadioButtonMenuItem(ActionListener al, JMenu m, String label, String command, boolean b,
            ButtonGroup g) {
        JRadioButtonMenuItem menuItem;
        menuItem = new JRadioButtonMenuItem(label);
        m.add(menuItem);
        menuItem.setActionCommand(command);
        menuItem.addActionListener(al);
        menuItem.setSelected(b);
        g.add(menuItem);
    }
}

Related

  1. addMenuItem(JMenu menu, Action action)
  2. addMenuItem(JMenu menu, String label, Action action, int mnemonic, String tooltip, boolean isEnabled)
  3. addMenuItem(JMenu menu, String label, Action action, int mnemonic, String tooltip, boolean isEnabled)
  4. addMenuItem(Window window, JMenu menu, String title, String icon, int mnemonic, KeyStroke key, ActionListener listener)
  5. addMenuItems(JMenu menu, JComponent... items)
  6. addSeparator(JMenu menu)
  7. addSeparatorIfNeeded(JMenu menu)
  8. applyDefaultProperties(final JMenu comp)
  9. assignMnemonics(JMenu menu)