01: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
02: // Released under the terms of the GNU General Public License version 2 or later.
03: package fitnesse.fixtures;
04:
05: public class PayCheckRecord {
06: public int employeeId;
07:
08: public String date;
09:
10: public String name;
11:
12: private double salary;
13:
14: public PayCheckRecord(int employeeId, String date, String name,
15: double salary) {
16: this .employeeId = employeeId;
17: this .date = date;
18: this .name = name;
19: this .salary = salary;
20: }
21:
22: public double pay() {
23: return salary;
24: }
25: }
|