JToolTip Component in Java

This is a tutorial in which we will going to create a program that has the JToolTip Component using Java. The JToolTip is used to display a text or a tip of the component. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of jToolTipComponent.java. 2. Import the following packages:
  1. import java.awt.*; // used to access the Color class
  2. import javax.swing.*; // used to access the JButton, JFrame, and JToolTip class
3. Initialize your variable in your Main, variable frame for creating JFrame and variable btn for your JButton. We will use the JButton so that if we hover this button with the mouse we can see the tooltip text.
  1.     JFrame frame = new JFrame("JToolTip Component");
  2.     JButton btn = new JButton("Sourcecodester") {
  3.        
  4.       public JToolTip createToolTip() {
  5.         JToolTip toolTip = super.createToolTip();
  6.         toolTip.setBackground(Color.CYAN);
  7.         toolTip.setForeground(Color.BLUE);
  8.         return toolTip;
  9.       }
  10.     };
As you can see above, we have created another class inside the JButton and named createToolTip for the JToolTip class. Meaning, we put JToolTip inside the JButton. We have created variable toolTip and declared as a super class for createToolTip class name. If we changed this to "this" class, it will have an error after running it. Then we have set the tooltip background color to CYAN and foreground color to BLUE. 4. Now, add the button to the frame using the default BorderLayout of the getContentPane method and have your button the text for tooltip. Have this code below:
  1.     frame.getContentPane().add(btn,"North");
  2.     btn.setToolTipText("this is a button");
5. Set the size, visibility, and the close operation of the frame.
  1.     frame.setSize(300, 200);
  2.     frame.setVisible(true);
  3.     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Output: tool tip Here's the full code of this tutorial:
  1. import java.awt.*; // used to access the Color class
  2. import javax.swing.*; // used to access the JButton, JFrame, and JToolTip class
  3.  
  4. public class jToolTipComponent {
  5.        
  6.   public static void main(String args[]) {
  7.     JFrame frame = new JFrame("JToolTip Component");
  8.    
  9.     JButton btn = new JButton("Sourcecodester") {
  10.        
  11.       public JToolTip createToolTip() {
  12.         JToolTip toolTip = super.createToolTip();
  13.         toolTip.setBackground(Color.CYAN);
  14.         toolTip.setForeground(Color.BLUE);
  15.         return toolTip;
  16.       }
  17.     };
  18.    
  19.     frame.getContentPane().add(btn,"North");
  20.     btn.setToolTipText("this is a button");
  21.    
  22.    
  23.     frame.setSize(300, 200);
  24.     frame.setVisible(true);
  25.     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  26.   }
  27. }
For more inquiries and need programmer for your thesis systems in any kind of programming languages, just contact my number below. Best Regards, Engr. Lyndon Bermoy IT Instructor/System Developer/Android Developer/Freelance Programmer Mobile: 09488225971 Landline: 826-9296 E-mail:[email protected] Add and Follow me on Facebook: https://www.facebook.com/donzzsky Visit and like my page on Facebook at: https://www.facebook.com/BermzISware

Add new comment