public void Employee (String name, double hours, double rate){
this.empName = name;
this.hoursWorked = hours;
this.payRate = rate;
computeWeeklyPay();
Got it. Not sure what I was thinking. Thanks a lot for your help! I am sure ill be needing you again soon!