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
Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular