Create a class named TimerAlarm that extends Thread and implements a timer. Don't use the built-in Timer class for this exercise. Your class constructor should take as input an integer named t representing time in milliseconds and an interface object named obj that defines a method named alarmAction( ). You will need to define this interface. Every t milliseconds the class should invoke method obj.alarmAction( ). Addpause( ) and play( ) methods that disable and enable the invocation of alarmAction( ). Test your class with code that increments and prints out a counter.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.