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 EmployeePayRecord {
06: public int id;
07:
08: private double salary;
09:
10: public EmployeePayRecord(int id, double salary) {
11: this .id = id;
12: this .salary = salary;
13: }
14:
15: public double pay() {
16: return salary;
17: }
18: }
|