Here you can find the source of getButtonSelectedString(ButtonGroup buttonGroup)
public static String getButtonSelectedString(ButtonGroup buttonGroup)
//package com.java2s; //License from project: Open Source License import javax.swing.ButtonGroup; public class Main { public static String getButtonSelectedString(ButtonGroup buttonGroup) { return buttonGroup.getSelection().getActionCommand(); }//from w w w .j a v a 2 s . c om }