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 PrimeData {
06: public PrimeData(int prime) {
07: this .prime = prime;
08: }
09:
10: public int prime;
11: }
|