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:
07: public class Employees extends RowEntryFixture {
08: public int id;
09: public String name;
10: public String address;
11: public double salary;
12:
13: public void enterRow() throws Exception {
14:
15: }
16: }
|