COP 3804 Intermediate Java - project 4 : pgm4b_5_COP3804java2 Professor: Michael Robinson e-mail : michael.robinson@cs.fiu.edu - At the beginning of your program add the following: /********************************************************************* Author : Your Name Course : Java section. Example Java-1, Java-2, Java-3, or Java-4 Professor : Michael Robinson Program # : Program Purpose/Description { A brief description of the program } Due Date : MM/DD/YYYY Certification: I hereby certify that this work is my own and none of it is the work of any other person. ..........{ your signature }.......... *********************************************************************/ - Program must be named: yourLastNameFirstLetterOfYourFirstNamePgm3.java ex: robinsonMpgm3.java - Make sure the program is properly documented and aligned uniformally, according to our "JAVA Programming Rules", discussed in class and located at: http://users.cis.fiu.edu/~mrobi002/includes/JAVA_programmingRules I will take points off if you do not follow the programming instructions. Purpose of this program: ======================== Master the design and implementation of classes using inheritance Chapter 14 What is Inheritance? external classes cssDefautls.java, is the super-class. webPageHome, webPage2, and webPage3. are sub-classes that will inherit from the cssDefaults super-class. inheritanceWebPage.java is the driver, will use the variables and methods of the super-class and sub-classes. --------------------------------------------------------------------- 1) Worth 2 points Write a super class program called lastNameFirstInitialSuperPgm4.java containing: a - methodOne that accepts one int displaying its content. Can not be inherited. b - methodTwo that accepts and displays two strings and the contents of methodOne c - methodThree that accepts nothing and displays I am super methodThree 2) Worth 1 point Write a sub-class named lastNameFirstInitialSub1.java that inherets all methods from your super class 3) Worth 1 point Write a sub-class program called lastNameFirstInitialSub2.java containing all inheritable methods from your super class overloading methodTwo by displaying "Hello I am sub class Two" 4) Worth 2 points Write a DRIVER class using all methods in all classes from questions 1, 2 and 3 Program submission: - ZIP source code for program from question 1, 2, 3 and 4 - Upload your zipped source code to your Moodle account - Turn in your signed source code on printed and stappled paper, for each of the four questions above