Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

For this assignment, you will be writing a class called FreightTrain that represents a train containing multiple cargo-carrying boxcars. The boxcars in the train are

For this assignment, you will be writing a class called FreightTrain that represents a train containing multiple cargo-carrying boxcars. The boxcars in the train are instances of the Boxcar class that you created in Assignment 2: Part 1 - Boxcar. To get started, download the template file FreightTrain.java (Links to an external site.)Links to an external site. into the same folder that holds your Boxcar.java code from Assignment 2: Part 1 - Boxcar. The FreightTrain class needs the Boxcar class to work properly.

As in Part 1 of this assignment, your job is to add code to FreightTrain.java so that your implementation meets the requirements specified below. To complete the assignment, replace all the /* missing code */ comments in the file with your own code. You do not need to change any other code in the file.

In previous assignments, we had a requirement that your class be named Main. In this assignment, the class is required to be named FreightTrain.

When you are done writing your FreightTrain.java code, you can test it by downloading the Student_Runner_FreightTrain.java (Links to an external site.)Links to an external site. file into the same directory and running the file. Check to see that your implementation output matches the sample run listed below. You may find that you wish to change some of the test cases in the runner file to more closely test the functionality of your code. We will test your code using our own runner file that is different from the one provided.

When you are done coding and testing, copy and paste your entire FreightTrain class into the Code Runner and press "Submit" in order for your assignment to count as turned in. Do not resubmit your Boxcar class. We will test your FreightTrain class with our own version of the Boxcar class.

Variables

ArrayList train - An ArrayList that stores a train with boxcars.

Methods

FreightTrain() - Default constructor that sets train to an ArrayList holding one boxcar containing 5 gizmos, that is not in repair.

FreightTrain(int n) - A constructor that sets train to an ArrayList of size n, holding n boxcars each containing 5 gizmos and not in repair. If n 0, then the train should be set to size one, with a single boxcar holding 5 gizmos and not in repair.

String toString() - This method returns a String representation of the Boxcar objects in the train, one per line. For example:

3 gadgets in service 2 wadgets in service 0 gizmos in repair 7 gadgets in service 0 gadgets in repair 

void setCargo(String c) - This method sets the the cargo type of all the boxcars in the entire train. The cargo variable is set to c only if c is "gizmos", "gadgets", widgets, or wadgets. It should ignore the case of the value in c. If c holds any value other than "gizmos", "gadgets", widgets, or wadgets, cargo will be set to "gizmos".

void setMultiCargo() - This method sets the boxcars to the alternating pattern "gizmos", "gadgets", "widgets", "wadgets", "gizmos", "gadgets", "widgets", "wadgets", ... until the end of the train.

void fillTrain() - This method fills all boxcars in the train to the maximum capacity of 10.

void callForRepair(int i) - This method sets the repair variable of the Boxcar at location i to true.

Sample run

1. Test the default constructor FreightTrain() Printing FreightTrain(): 5 gizmos in service 2. Test the constructor FreightTrain(n) Printing emptyTrain (n=0): 5 gizmos in service Printing negativeTrain (n=-7): 5 gizmos in service Printing trainWithFiveCars (n=5): 5 gizmos in service 5 gizmos in service 5 gizmos in service 5 gizmos in service 5 gizmos in service 3. Test setCargo(String) Printing trainWithFiveCars with cargo now gadgets: 5 gadgets in service 5 gadgets in service 5 gadgets in service 5 gadgets in service 5 gadgets in service Printing trainWithFiveCars with cargo of onions (back to gizmos): 5 gizmos in service 5 gizmos in service 5 gizmos in service 5 gizmos in service 5 gizmos in service 4. Test fillTrain() Printing trainWithFiveCars with all Boxcars full: 10 gizmos in service 10 gizmos in service 10 gizmos in service 10 gizmos in service 10 gizmos in service 5. Test callForRepair(n) Printing trainWithFiveCars with second car in repair: 10 gizmos in service 0 gizmos in repair 10 gizmos in service 10 gizmos in service 10 gizmos in service 6. Test setMultiCargo() Printing multi Cargo 8-car train: 5 gizmos in service 5 gadgets in service 5 widgets in service 5 wadgets in service 5 gizmos in service 5 gadgets in service 5 widgets in service 5 wadgets in service 

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 Microsoft SQL Server 2012 Administration

Authors: Adam Jorgensen, Steven Wort

1st Edition

1118106881, 9781118106884

More Books

Students also viewed these Databases questions

Question

=+5 Does this case provide an example of the future for IHRM?

Answered: 1 week ago