Human.java 435B

12345678910
  1. /**
  2. * Complete the 'Human' class in the Superpowers Package that has fields for: name, age, gender,
  3. * occupation, and address. Also create methods for retreiving and outputing this data to screen.
  4. * Then create a SuperHuman class and UNIT TEST that subclasses the first with fields for good or bad,
  5. * hero name, super ability. As before, create methods for retrieving field data and printing to screen.
  6. */
  7. public class Human {
  8. }