01: // Copyright (c) 2002 Cunningham & Cunningham, Inc.
02: // Released under the terms of the GNU General Public License version 2 or later.
03:
04: package fat;
05:
06: import fit.ColumnFixture;
07:
08: public class Divide extends ColumnFixture {
09: public int x, y;
10:
11: public int divide() {
12: return x / y;
13: }
14: }
|