Inheritance and Polymorphism

Work on this exercise by yourself, but ask questions of your instructor, student assistants and classmates as desired.

Goals

The goals of this exercise are to:

The Exercise

Instructions Part 1: Download the project using Subclipse

This is a new way of downloading demo projects that should work well. All the sample code is in a repository; you'll just connect to it and grab the project.
  1. In Eclipse, go to the SVN Repository Exploring View.
  2. Right-click in the SVN Repository window on the left (anywhere, but not on an existing repository), and choose New > Repository Location ...
  3. For the URL, type: http://svn.cs.rose-hulman.edu/repos/csse221-200810-public (Note, it might be easiest to modify an existing location using the drop-down menu.)
  4. Expand the repository that comes up and select the InheritanceDemo project, right-click, and choose Checkout
  5. Change back to Java Perspective
  6. Choose Team > Disconnect ... and choose the option to delete the svn meta info. This will make your copy of this project standalone, so you don't modify the shared online copy by accident.
  7. Optional: You may choose Team>Share Project to YOUR personal repository if you want version control for this project. Since this project won't be turned in, that's your decision.

Instructions Part 2: Understand the basic code.

  1. Go over the Employee and HourlyEmployee classes with your instructor.
  2. Run InheritanceDemo.java. (Note that the Polymorphism.java file won't compile until after you finish Part 3.)
  3. Make sure you understand:
  4. If there was a quiz question related to the demo, you should do it now ... feel free to test your code here, but you will need to write out your solution on the quiz.

Instructions Part 3: Create a SalariedEmployee from scratch.

A SalariedEmployee is an Employee that has an annual salary.
  1. Create a SalariedEmployee class that extends Employee.
  2. Create the same constructors: a default that sets the salary to 0; a 3-arg one that takes and name, date, and salary; and a copy constructor that creates a copy of a SalariedEmployee object that's passed to it.
  3. Write the following methods: getSalary() accessor, getPay() (that gets monthly pay, like the hourly employee did), toString(), and .equals().
  4. Modify the InheritanceDemo.java file to create a SalariedEmployee and test some of its methods.

Instructions Part 4: Polymorphism

  1. Run PolymorphismDemo.java.  Look at the code. How we are using polymorphism here?
  2. Add code to print the pay of each employee that has pay. This is where you'll need typecasting and instanceof.
  3. Show your code to the instructor or an assistant.