Starting from:

$30

CSIT121-Assignment 1 Solved

This assignment will require you to design a set of classes that work together to simulate a police officer issuing a parking ticket. You are then required to write a Java application to demonstrate how the objects from these class interact. The description of each classes are given below.  

 

 

The ParkedCar Class 
 

This class is used to simulate a parked car at a parking lot. The class should contain the following attributes:

 

-      The car’s make (example: Honda)

-      The car’s model (example: Accord)

-      The color of the car

-      The car’s registration number

-      The number of minutes the car has been parked

The class should have a constructor to initialize the make, model, color, and registration number with the values passed as parameters. The number of minutes should start with zero (0). There should be a set method to set number of minutes and a get method to retrieve the number of minutes.

 

 

 

 

 

The ParkingMeter Class 
 

This class is used to simulate a parking meter. The class’s only responsibility is to set and know the number of minutes of parking that has been purchased by a car parked at the lot. The class will contain only one attribute:

 

 The number of minutes of parking time purchased

Include a default constructor to initialize the time to zero (0), a method to set the minutes purchased, and a method to retrieve the minutes purchased.  

 

 

The ParkingTicket Class 
 

This class is used to simulate a parking ticket issued by a police officer for a car that has parked illegally. The class should keep the details of:

 

-      The illegally parked car. This should be declared as a ParkedCar object you have declared above. 

-      The amount of fine. 

-      The police officer who issue this parking ticket. This should be declared as a PoliceOfficer object (details below) 

-      A public class variable to represent the fine rate for the first hour and is initialized to RM150.00, a public class variable to represent the fine rate for additional hour and is initialized to RM50.00, and a public class variable to represent the maximum fine rate and is initialized to RM300.00. 

The class should have a default constructor, a set method to assign a ParkedCar object, a set method to assign the PoliceOfficer object, a method to show the details of the ParkingTicket (which includes the ParkedCar details, the PoliceOfficer details and the amount of fine), and a method to calculate the amount of fine.  

 

The method to calculate the amount of fine should take as parameter the number of minutes of parking time purchased by the car which is taken from the ParkingMeter object. The fine is calculated by first calculating the number of minutes the car is parked beyond the parking time purchased. The fine is RM150.00 for the first hour or part of an hour that the car is illegally parked, plus RM50.00 for every additional hour or part of an hour that the car is illegally parked. The maximum fine should be RM300.00.

 

 

The PoliceOfficer Class 
 

The PoliceOfficer class is used to simulate a police officer inspecting parked cars. The police officer will issue a parking ticket if a parked car is found to be illegally parked at a parking lot. This class keeps the following details about a police officer.

 

-      The police officer’s name

-      The police officer’s badge number

The class should implement a suitable constructor, set methods, and get methods.

 

 

 

 

The main application 

 

Write another class to be the main application that simulate the interaction between all the classes above. Your application should simulate the following activities:

 

§  A police officer sign up for duty. This will involve creating a PoliceOfficer object. If a ticket is issued when this officer is on duty, the details will be stated on the parking ticket issued. You may have more than one police officer but only one should be on duty at a time in this simulation.

 

§  Creating ParkedCar objects. This will involve creating several ParkedCar objects. You should make some of them are illegally parked and some are not. Use an array named parkingLot to keep all your ParkedCar objects. For each of the ParkedCar object, there should be a ParkingMeter object created to simulate the purchasing of the parking time. The ParkingMeter objects should be kept in another array named meters. The index of the arrays will be used to simulate parking lot and its parking meter. For example, if a ParkedCar object is stored at parkingLot[3] then its ParkingMeter will be stored in meters[3]. 

 

§  Inspecting ParkedCar objects and ParkingMeter objects. This is where the police officer will inspect all cars that are parked to check if they are illegally parked. A ParkingTicket will be issued (a ParkingTicket object is created) if a ParkedCar is found to be illegally parked. A ParkedCar is illegally parked when the parking time purchased by the car has expired. All ParkingTicket objects should be stored in an ArrayList. 

 

§  Displaying all ParkingTicket objects. This will display a list of all ParkingTicket objects that have issued during the simulation.

 

Remember to include suitable exceptions handling in your program, write meaningful comments, and use meaningful variables and methods names. Take an effort to make your output presentable and easy to understand.

 

More products