Question: Write a Java application that implements different types of insurance policies. Let Insurance be an abstract superclass and Home and Auto two of its subclasses
Write a Java application that implements different types of insurance policies.
Let Insurance be an abstract superclass and Home and Auto two of its subclasses that describe respectively home insurance and auto insurance.
The Insurance class defines an instance variable of type String to describe the type of insurance and an instance variable of type double to hold the monthly cost of that insurance.
Implement the get methods for both variables of class Insurance. Declare also two abstract methods named setInsuranceCost and displayInfo for this class.
The Home and Auto classes should implement setInsuranceCost and display methods by setting the appropriate monthly fee and display the information for each insurance type.
Write a driver class to test this hierarchy. This application should ask the user to enter the type of insurance and its monthly fee. Then, will create the appropriate object Home or Auto and display the insurance information.
As you create each insurance object, place an Insurance reference to each new Insurance object into an array. Each class has its own setInsuranceCost method. Write a polymorphic screen manager that walks through the array sending setInsuranceCost messages to each object in the array and displaying this information on the screen. Use JOptionPane to interact with the user.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
