The Project        Download   Javadoc   SourceForge   Donate

ToolTipButton

It is a image button to show a tooltip message.

The message appears with the mouse click or mouse over.

 
Class<?> cls = ...
URL url = cls.getResource("question.png");
Icon icon = new ImageIcon(url);
String text = "Visit Japura project at http://www.japura.org"; 
ToolTipButton ttb = new ToolTipButton(icon, text);