Here you can find the source of addRadioButton(Container container, String label, int mnemonic, String tooltip, String placement, boolean debug)
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 |
public static JRadioButton addRadioButton(Container container, String label, int mnemonic, String tooltip, String placement, boolean debug)
//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; } }