Java JToolBar addRadioButton(Container container, String label, int mnemonic, String tooltip, String placement, boolean debug)

Here you can find the source of addRadioButton(Container container, String label, int mnemonic, String tooltip, String placement, boolean debug)

Description

Add a radio button (with label) to parent container

License

Open Source License

Parameter

Parameter Description
container - parent container
label - radio button label
mnemonic - mnemonic for button
tooltip - button tool tip
placement - TableLayout placement of button in parent container
debug - turn on/off red debug borders

Return

JRadioButton

Declaration

public static JRadioButton addRadioButton(Container container, String label, int mnemonic, String tooltip,
        String placement, boolean debug) 

Method Source Code

//package com.java2s;
/*// w ww .  ja v a  2  s.  c o  m
 * ome.formats.importer.gui.GuiCommonElements
 *
 *------------------------------------------------------------------------------
 *  Copyright (C) 2006-2008 University of Dundee. All rights reserved.
 *
 *
 *  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
 *  (at your option) 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.,
 *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 *------------------------------------------------------------------------------
 */

import java.awt.Container;

import javax.swing.JRadioButton;

public class Main {
    /**
     * Add a radio button (with label) to parent container 
     * 
     * @param container - parent container
     * @param label - radio button label
     * @param mnemonic - mnemonic for button
     * @param tooltip - button tool tip
     * @param placement - TableLayout placement of button in parent container
     * @param debug - turn on/off red debug borders
     * @return JRadioButton
     */
    public static JRadioButton addRadioButton(Container container, String label, int mnemonic, String tooltip,
            String placement, boolean debug) {
        JRadioButton button = new JRadioButton(label);
        button.setToolTipText(tooltip);
        container.add(button, placement);
        button.setOpaque(false);
        return button;

    }
}

Related

  1. addButton(Container component, String text, Icon icon, ActionListener listener, String actionCommand, int mnemonic, String toolTip)
  2. addButton(Container container, String label, int mnemonic, String tooltip, String placement, boolean debug)
  3. addToolbar(JPanel panel, JToolBar bar)
  4. addToolBarButton(JToolBar toolbar, Action action, String tooltip, Icon icon)
  5. addToolBarButton(JToolBar toolbar, Action action, String tooltip, Icon icon, String lbl)
  6. addToolItems(JToolBar toolBar, JComponent... items)