Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

COMPLETING THE PLANNER CLASS(25 marks) The int planTrip(int numPassengers, String tripType, Date date, int comfortLevel) method of Planner plans an trip of a given type

COMPLETING THE PLANNER CLASS(25 marks) The int planTrip(int numPassengers, String tripType, Date date, int comfortLevel) method of Planner plans an trip of a given type with the specified number of passengers on the specified date. Steps include: a. Determine the set of buses that the promoter can afford b. Find the lowest cost Bus from the set of affordable buses that i. can hold the number of passengers and ii. is available c. If there is at least one Bus that meets the requirements i. Create an instance of a Trip ii. Call the reserve method of the Bus and capture the return value in an integer iii. If the return value is greater than or equal to 0, 1. Call the setBus method of the trip to the selected bus 2. Pay for the selected bus 3. Return the return value as the result of planTrip d. If plans for the trip did not work out, return -1

pay attention to the bus class and use the methods that might be useful like maybe can hold(im not sure)

import java.util.ArrayList;

public class Planner { private String name; private double budget; private Ministry mny; private Bus[] buses; private ArrayList possibleBuses; public Planner(String name, double budget, Ministry mny, Bus[] buses) { this.name = name; this.budget = budget; this.mny = mny; this.buses = buses; possibleBuses = new ArrayList(); } public String getName(){ return name; } public double getBudget(){ return budget; } public int planTrip(int numPassengers, String tripType, Date date, int comfortLevel) { int retval = -1; possibleBuses.clear(); /* //populate possible buses by adding busses that are suitable, // can hold the passengers at the comfortlevel,and can be afforded */ //System.out.println(possibleBuses.size() +" affordable buses "); if (possibleBuses.size() >0){ Bus minBus=null; /* //find the suitable bus with minimum price and assign to minbus` */ if (minBus==null) System.out.println("No suitable bus is available"); else{ //create a trp with the type, number of passengers and the comfortlevel // attempt to get get an approval id by calling the reserve method of the bus // if the id >=0 Trip trip = new Trip(tripType, numPassengers, date, comfortLevel,this); int reserved = minBus.reserve(trip, mny); if (reserved >= 0){ trip.setBus(minBus); payFor(minBus,tripType, numPassengers, comfortLevel); retval = reserved; System.out.println(name + " successfully reserved " + trip); } } } else System.out.println(name + " cannot afford to pay for any suitable buses"); return retval; } public void payFor(Bus bus, String tripType, int numPassengers, int comfortLevel){ budget-=bus.getEstimate(tripType, numPassengers, comfortLevel); }

}

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

More Books

Students also viewed these Databases questions

Question

=+What is the nature of the unions in the particular country?

Answered: 1 week ago