Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1.  
  2. public class WFMEmployeeTest{
  3.  
  4. public static void main(String[]args){
  5.  
  6. WFMEmployee obj1= new WFMEmployee("Dom", "1234567", 2, true);
  7. obj1.addEmployee("Em", "0987654", 1, false);
  8. System.out.println(obj1.getEmployee("Em"));
  9.  
  10. obj1.makeFile("C:/Users/domsc/OneDrive/Desktop/USF Fall 2019/Object Oriented Programming/HW04/WFMList.txt");
  11.  
  12. }
  13.  
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement