devxlogo

Using Swing to Add Tool Tips

Using Swing to Add Tool Tips

Using Swing, you can easily add tool tips to any of the components in your GUI. Tool tips aren’t normally visible, but they become visible when you point at the component with the mouse. This code was tested using JDK1.1.6 and Swing 1.0.3 under Win95:

 import java.awt.*;import java.awt.event.*;import com.sun.java.swing.*;public class SwingToolTip01 extends JFrame {	public static void main(String args[]) {		new SwingToolTip01();	}//end main()	//-----------------------------------------------------//  	SwingToolTip01() {//constructor		setTitle("Tool Tips");		getContentPane().setLayout(new FlowLayout());		//Create two buttons with no action listeners		JButton myJButton = new JButton("myButton");		//Put a tool tip on the button		myJButton.setToolTipText("My JButton");		getContentPane().add(myJButton);    		JButton urJButton = new JButton("urButton");		//Put a tool tip on the button		urJButton.setToolTipText("Ur JButton");getContentPane().add(urJButton);		setSize(300,100);		setVisible(true);    		// Inner class WindowAdapter to terminate the		// program when the JFrame is closed.		addWindowListener(new WindowAdapter() {			public void windowClosing(WindowEvent e) {				System.exit(0);}});//end WindowListener    	}//end constructor    }//end class SwingToolTip01
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist