import javax.swing.JButton;public class Main { public static void main(String[] argv) throws Exception { JButton component = new JButton(); String imageName = "file:image.jpg"; component.setToolTipText("Here is an image "); }}