Question: A constructor to initialize the name and create the arrayList roads . The methods getName() and getRoads(). The coutStreets method that returns the number of

- A constructor to initialize the name and create the arrayList roads.
- The methods getName() and getRoads().
- The coutStreets method that returns the number of streets in the array list.
- The searchForStreetmethod that takes as parameter the name of a street and returns the street object if found or null if not found.
- A toString method to return information about all data fields.
Write a client class (application) in which you:
- Create a country object with name read from the user, and add to the country object some freeways and streets as many as the user wants.
- Write code to display the number of streets in the country object.
- Write code display the information the country object.
- Test the searchForStreet method by reading a street name from the user and displaying its description if it is available.
Implement the class Country only. The code of the classes Road, Street and Freeway is provided below. Road - speed Limit: int - length: int - carpool: boolean + Road ----All Parameters----) + setters/getters +toString(): String Country -name: String roads: ArrayList + Countryname: String) + getName(): String + getRoads(): ArrayList + addRoader: Road): void + countStreets(): int + searchFor Street (streetName: String): Street + toString(): String WWWWW Street - name: String + Street (----All Parameters----) + setter/getter + toString(): String Freeway - code: int + Freeway ----All Parameters----) + setter/getter + toString(): String www
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
