devxlogo

Adding a Timer to Your Application

Adding a Timer to Your Application

Java swing provides a Timer class to cause an action at a pre-defined rate. For instance, you could have a label that blinks at a pre-defined rate. The class has lot of practical usage.

The constructor takes Timer (int delay, ActionListener listener) as its parameter.

It has a method setCoalesce (boolean) that takes care of multiple pendingActionEvent firings:

 import javax.swing.*;import java.awt.event.*;import java.awt.*;class Time extends JFrame implements ActionListener{        JLabel l;        Time()        {               Container c=getContentPane();               c.setLayout(null);               l =new JLabel("Blink");               l.setBounds(50,50,40,40);               c.add(l);               Timer t=new Timer(500,this);//               t.setCoalesce(true);               t.start();        }        public void actionPerformed(ActionEvent e)        {                if(l.isVisible())                       l.setVisible(false);                 else                        l.setVisible(true);        }        static void main(String[]arr)throws Exception        {                Time t=new Time ();                t.setSize(200,200);                t.setVisible(true);        }}
See also  Why ChatGPT Is So Important Today
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