home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-08-27 | 621 b | 28 lines |
- import java.util.Date;
-
- // mock-up of employee record in "Sample Database.mdb"
- public class employee
- {
- // Fields in the record
- public String name;
- public String email;
- public String phone;
- public String location;
- public String manager;
- public Date hireDate;
- public boolean certified;
-
- // constructor to set the field values
- employee(String name, String email, String mgr,
- String phone, String loc, String date, boolean cert)
- {
- this.name = name;
- this.email = email;
- this.phone = phone;
- location = loc;
- manager = mgr;
- hireDate = new Date(date);
- certified = cert;
- }
-
- }