Advertisement
SasukeSlayer

Untitled

Nov 18th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.47 KB | None | 0 0
  1. import java.util.*;
  2. import java.io.*;
  3.  
  4. public class TestEmployee2
  5. {
  6.   public static void main(String[] args) throws IOException
  7.   {
  8.     Employee e1 = new Employee2(7, "George Costanza");
  9.    
  10.     e1.setDepartment("Front Office");
  11.     e1.setPosition("Assistant to the Traveling Secretary");
  12.     e1.setSalary(50000.0);
  13.     e1.setRank(2);
  14.    
  15.     e1.displayEmployee();
  16.    
  17.     //Employee e2 = createEmployeeFromFile();
  18.     //e2.displayEmployee();
  19.    
  20.   }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement