Question: Assume that a class has an inner class named MyTimerListener that can be used to handle the events generated by a Timer object. Write code
Assume that a class has an inner class named MyTimerListener that can be used to handle the events generated by a Timer object. Write code that creates a Timer object with a time delay of one half second. Register an instance of MyTimerListener with the class.
Is this right??
public class MyTimerListener extends JApplet
{
private final int TIME_DELAY = 1500;
private Time timer;
public void init()
{
timer = new Timer (TIME_DELAY, new TimerListener());
timer.start();
}
public class TImerListener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
....
}
}
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
