01: /*
02: * Copyright 2003 (C) TJDO.
03: * All rights reserved.
04: *
05: * This software is distributed under the terms of the TJDO License version 1.0.
06: * See the terms of the TJDO License in the documentation provided with this software.
07: *
08: * $Id: HasNormalSetField.java,v 1.3 2003/11/26 22:58:20 jackknifebarber Exp $
09: */
10:
11: package com.triactive.jdo.test;
12:
13: import java.util.Set;
14:
15: public interface HasNormalSetField extends HasSCOFields {
16: Set getNormalSet();
17:
18: Set getNormalObjectSet();
19:
20: int getNumWidgets();
21:
22: void fillRandom(int numWidgets);
23:
24: void fillRandom(int numWidgets, boolean includeSetWidgets);
25: }
|