Terai Atsuhiro 2025-12-14 (日) 04:34:55

*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);