Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Modify Restart.action() to start the the system by reading events from a text file. Use Scanner and an appropriate regular expression. File is called examples1.txt

Modify Restart.action() to start the the system by reading events from a text file. Use Scanner and an appropriate regular expression. File is called examples1.txt but the file is added when we compile from command line "java GreenhouseControls -f examples1.txt"

Alter the code below to read from a file and the contents to addevent

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional Visual Basic 6 Databases

Authors: Charles Williams

1st Edition

1861002025, 978-1861002020

More Books

Students also viewed these Databases questions

Question

=+6. What does the invisible hand of the marketplace do?

Answered: 1 week ago

Question

=+ 4. Why should policymakers think about incentives?

Answered: 1 week ago