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 eg.employeePayroll;
04:
05: import fitnesse.fixtures.RowEntryFixture;
06: import java.util.Date;
07:
08: public class PayDay extends RowEntryFixture {
09: public Date payDate;
10: public int checkNumber;
11:
12: public void enterRow() throws Exception {
13:
14: }
15: }
|