Terai Atsuhiro 2021-10-16 (土) 00:37:47

*1

http://terai.xrea.jp/swing/tooltip/screenshot.png

ActionListener al = new ActionListener() {
  public void actionPerformed(ActionEvent e) {
    JRadioButton radio = (JRadioButton) e.getSource();
    ToolTipManager.sharedInstance().setEnabled((radio==onRadio)?true:false);
  }
};
onRadio.addActionListener(al);
offRadio.addActionListener(al);