Enhance the buttonviewer program so that it prints the time


Enhance the ButtonViewer program so that it prints the time at which the button was clicked.
Please provide the ClickListener class in your solution.

Use the following class as your main class:

import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;

/**
This program demonstrates how to install an action listener.
*/
public class ButtonViewer
{
private static final int FRAME_WIDTH = 100;
private static final int FRAME_HEIGHT = 60;

public static void main(String[] args)
{
JFrame frame = new JFrame();
JButton button = new JButton("Click me!");
frame.add(button);

ActionListener listener = new ClickListener();
button.addActionListener(listener);

frame.setSize(FRAME_WIDTH, FRAME_HEIGHT);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}

Solution Preview :

Prepared by a verified Expert
JAVA Programming: Enhance the buttonviewer program so that it prints the time
Reference No:- TGS01249883

Now Priced at $20 (50% Discount)

Recommended (91%)

Rated (4.3/5)