KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > triactive > jdo > test > HasNormalSetField


1 /*
2  * Copyright 2003 (C) TJDO.
3  * All rights reserved.
4  *
5  * This software is distributed under the terms of the TJDO License version 1.0.
6  * See the terms of the TJDO License in the documentation provided with this software.
7  *
8  * $Id: HasNormalSetField.java,v 1.3 2003/11/26 22:58:20 jackknifebarber Exp $
9  */

10
11 package com.triactive.jdo.test;
12
13 import java.util.Set JavaDoc;
14
15
16 public interface HasNormalSetField extends HasSCOFields
17 {
18     Set JavaDoc getNormalSet();
19
20     Set JavaDoc getNormalObjectSet();
21
22     int getNumWidgets();
23
24     void fillRandom(int numWidgets);
25
26     void fillRandom(int numWidgets, boolean includeSetWidgets);
27 }
28
Popular Tags