import javax.swing.JButton;
import javax.swing.JFrame;
publicclass JButtonWithTooltip extends JFrame {
public JButtonWithTooltip() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JButton b = new JButton("Test");
b.setToolTipText("Help text for the button");
getContentPane().add(b, "Center");
pack();
}
publicstaticvoid main(String[] args) {
new JButtonWithTooltip().setVisible(true);
}
}