[ Home ] [ Up ] [ Secretary ] [ ExecutiveSecretary ] [ Manager ] [ Executive ] [ Programmer ] [ Test Program ]
Here's class ExecutiveSecretary:
package company; import java.util.Date; public class ExecutiveSecretary extends Secretary { public ExecutiveSecretary(String n, double s, Date d, int ts) { super(n, s, d, ts); } // Other attributes of an Executive Secretary... }
This page was last modified on 02 October, 2007