Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started