Italicize the second line : Tooltip « Swing JFC « Java
- Java
- Swing JFC
- Tooltip
Italicize the second line
import javax.swing.JButton;
public class Main {
public static void main(String[] argv) throws Exception {
JButton component = new JButton();
component.setToolTipText("<html>" + "This is a" + "<br><i>" + "tool tip" + "</i></html>");
}
}
Related examples in the same category