Get fast, custom help from our academic experts, any time of day.

Place your order now for a similar assignment and have exceptional work written by our team of experts.

✔Secure ✔ Original ✔ On Schedule

Menu Loop and Monkey Intake
In this assignment, you will gain experience putting together a multiple-class program by creating a class that inherits from another (existing) class, and modifying or implementing methods in the Driver class. Read through the code for each class that you have been given. This will help you understand what code has been created and what code must be modified or created to meet the requirements.
You have been asked to demonstrate industry standard best practices in all the code that you create to ensure clarity, consistency, and efficiency among all software developers working on the program. In your code for each class, be sure to include the following:
In-line comments that denote your changes and briefly describe the functionality of each method or element of the class
Appropriate variable and method naming conventions
In a new Java file, create the Monkey class, using the specification document as a guide. The Monkey class must do the following:
Inherit from the RescueAnimal class.
Implement all attributes to meet the specifications.
Include a constructor. You may use a default constructor. To score “exemplary” on this criterion, you must include the more detailed constructor that takes all values for the attributes and sets them. Refer to the constructor in the Dog class for an example.
Include accessors and mutators for all implemented attributes.
In the Driver.java class, modify the main method. In main(), you must create a menu loop that does the following:
Displays the menu by calling the displayMenu method. This method is in the Driver.java class.
Prompts the user for input
Takes the appropriate action based on the value that the user entered
IMPORTANT: You do not need to complete all of the methods included in the menu for this milestone. Simple placeholder print statements for these methods have been included in the starter code so that you can test your menu functionality.
Next, you will need to create a monkey ArrayList in the Driver.java class. Refer to the dog ArrayList, which is included right before main(), as an example. Creating this ArrayList is necessary for the intakeNewMonkey() method, which you will implement in the next step. Though it is not required, it may be helpful to pre-populate your ArrayList with a few test monkey objects in the initializeMonkeyList() method.
Finally, you will implement the intakeNewMonkey() method in the Driver.java class. Your completed method should do the following:
Prompt the user for input.
Set data for all attributes based on user input.
Add the newly instantiated monkey to an ArrayList.

Get fast, custom help from our academic experts, any time of day.

✔Secure ✔ Original ✔ On Schedule