Advertisement
arafaee

EmployeeTest.java

Apr 17th, 2017
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1.  
  2. /**
  3.  * EmployeeTest.java
  4.  *
  5.  * @author Hafara Firdausi/ 5115100043
  6.  * @version 01
  7.  */
  8.  
  9. public class EmployeeTest
  10. {
  11.    public static void main(String[] args)
  12.    {
  13.        Date birth = new Date( 7, 24, 1949 );
  14.        Date hire = new Date( 3, 12, 1988 );
  15.        Employee employee= new Employee("Bob","Blue", birth, hire);
  16.        
  17.        System.out.println(employee);
  18.    } //end main
  19. } //end class EmployeeTest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement