/**************************************************************************
 * The tester class
 *************************************************************************/
public class EmployeeTest
{
    public static void main (String[ ] args)
    { 
        Employee e1 = new Employee("Dir","Sultan","Sam","M",45);
        System.out.printf("e1 reference is:  %x \n", System.identityHashCode(e1) );
        System.out.println(e1.toString());                  
        System.out.println();
   
        Employee e2 = new Employee("Mgr","Smith","Mary","F",35);    
        System.out.printf("e2 reference is:  %x \n", System.identityHashCode(e2) );
        System.out.println(e2.toString());                  
        System.out.println();

        Employee e3 = new Employee("Sec","Stevens","Bob","M",28);
        System.out.printf("e3 reference is:  %x \n", System.identityHashCode(e3) );
        System.out.println(e3.toString());                                                
        System.out.println();
    }
}