Question: USE ORIGINAL CODE. For the following java code Modify Restart.action() to start the the system by reading events from a text file. Use Scanner and
USE ORIGINAL CODE. For the following java code Modify Restart.action() to start the the system by reading events from a text file. Use Scanner and an appropriate regular expression. --------------------------------------------------------------------------------------------------- public class Restart extends Event { public Restart(long delayTime, String filename) { super(delayTime); eventsFile = filename; } public void action() { addEvent(new ThermostatNight(0)); addEvent(new LightOn(2000)); addEvent(new WaterOff(8000)); addEvent(new ThermostatDay(10000)); addEvent(new Bell(9000)); addEvent(new WaterOn(6000)); addEvent(new LightOff(4000)); addEvent(new Terminate(12000)); } public String toString() { return "Restarting system"; } } 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
