/*
 * @topic T10322 Feb 6, 2014 Inheritance Demo
 * @brief main driver program
*/
package wk3demo;

public class MainApp {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        Employee emp = new Employee();
        emp.setTitle("worker");

        Manager mgr = new Manager();
        mgr.setTitle("boss");
    }

}//class MainApp