Here you can find the source of regroupeBoutons(JRadioButton[] tab)
public static ButtonGroup regroupeBoutons(JRadioButton[] tab)
//package com.java2s; //License from project: Mozilla Public License import javax.swing.*; public class Main { public static ButtonGroup regroupeBoutons(JRadioButton[] tab) { ButtonGroup grpBtn = new ButtonGroup(); for (JRadioButton btn : tab) grpBtn.add(btn);// w w w . j a va 2 s .c o m return grpBtn; } }