Main Class Implement a main class that implements our ParkingOffice.java class.  Parkingoffice.java public class ParkingOffice { String name; String address; String phone; String parkingOfficeName; List customers; List cars; List lots; List charges; public ParkingOffice(){ customers = new ArrayList<>(); cars = new ArrayList<>(); lots = new ArrayList<>(); charges = new ArrayList<>(); } public String getParkingOfficeName(){ return this.parkingOfficeName; }   /* to implement the desired park function */ public String park(Date date,String ParkingPermit,ParkingLot pl){ /* to have the amount paid during the transaction for the specified parking lot */ double amount=pl.amount; /* to have the date on which the parking lot is booked */ String onDate=date.toString(); /* to know the permit id */ String permitId=ParkingPermit; /* to print the transaction receipt */ String s="Amount paid on date: "; s=s+onDate; s=s+" is "+Double.toString(amount); s=s+"\nDear customer, your transaction for vehicle with permit ID, "; s=s+permitId; s=s+" is successful!!"; return s; } public double getParkingCharges (ParkingCharge p ){ if(p.numofHours <= 3) { p.amount= 2; } else if(p.numofHours> 3 && p.numofHours <= 19) p.amount = 2.0 + 0.5*(p.numofHours - 3); else if (p.numofHours > 19) p.amount = 10; return p.amount ; } public Money getParkingCharges(Customer c){ /* to search for the customer in the cars list */ for(int i=0;i

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter11: Advanced Inheritance Concepts
Section: Chapter Questions
Problem 2GZ
icon
Related questions
Question

Main Class

Implement a main class that implements our ParkingOffice.java class. 

Parkingoffice.java


public class ParkingOffice {
String name;
String address;
String phone;
String parkingOfficeName;

List<Customer> customers;
List<Car> cars;
List<ParkingLot> lots;
List<ParkingCharge> charges;

public ParkingOffice(){
customers = new ArrayList<>();
cars = new ArrayList<>();
lots = new ArrayList<>();
charges = new ArrayList<>();
}

public String getParkingOfficeName(){
return this.parkingOfficeName;
}

 

/* to implement the desired park function */

public String park(Date date,String ParkingPermit,ParkingLot pl){

/* to have the amount paid during the transaction for
the specified parking lot */
double amount=pl.amount;
/* to have the date on which the parking lot is booked */
String onDate=date.toString();
/* to know the permit id */
String permitId=ParkingPermit;
/* to print the transaction receipt */
String s="Amount paid on date: ";
s=s+onDate;
s=s+" is "+Double.toString(amount);
s=s+"\nDear customer, your transaction for vehicle with permit ID, ";
s=s+permitId;
s=s+" is successful!!";

return s;
}
public double getParkingCharges (ParkingCharge p ){

if(p.numofHours <= 3) {

p.amount= 2;
}
else if(p.numofHours> 3 && p.numofHours <= 19)

p.amount = 2.0 + 0.5*(p.numofHours - 3);

else if (p.numofHours > 19)

p.amount = 10;

return p.amount ;

}


public Money getParkingCharges(Customer c){


/* to search for the customer in the cars list */
for(int i=0;i<cars.size();i++){
if(cars.get(i).getOwner.equals(c.getName())){
/* to search for lot for the obtained car in the lot list */
for(int j=0;j<lots.size();j++){
for(int k=0;k<lots.get(j).cars.size();k++){
if(lots.get(j).cars.get(k).getLicense().equals(cars.get(i).getLicense())){
String x=lots.get(j).lotId;
/* to search for the lotID in the parking charges
and get the amount for that parking lot */
for(int m=0;m<charges.size();m++){
/* on getting the amount returning the money object */
if(charges.get(m).lotID.equals(x)){
String money =Double.toString(x);
Money m1=new Money(money);
return m1;
}
}
break;
}
}
}
break;

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Data members
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,