SHOW:
|
|
- or go back to the newest paste.
| 1 | // Fig. 8.9: EmployeeTest.java | |
| 2 | // Composition demonstration. | |
| 3 | ||
| 4 | public class EmployeeTest | |
| 5 | {
| |
| 6 | public static void main( String[] args ) | |
| 7 | {
| |
| 8 | Date birth = new Date( 7, 24, 1949 ); | |
| 9 | Date hire = new Date( 3, 12, 1988 ); | |
| 10 | Employee employee = new Employee( "Bob", "Blue", birth, hire ); | |
| 11 | ||
| 12 | System.out.println( employee ); | |
| 13 | ||
| 14 | ||
| 15 | } // end main | |
| 16 | } // end class EmployeeTest |