Swing Java Tutorial

import java.awt.Color;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JToolTip;
public class ToolTipHTML {
  public static void main(String args[]) {
    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    JButton b = new JButton("Hello, World");
    frame.add(b,"Center");
    b.setToolTipText("asdfbold");
    frame.setSize(300, 200);
    frame.setVisible(true);
  }
}