import javax.swing.JButton;
import javax.swing.JOptionPane;
public class Main {
public static void main(final String args[]) {
JButton button = new JButton("Test");
button.setToolTipText("Help text for the button");
JOptionPane.showMessageDialog(null, button);
}
}