KickJava   Java API By Example, From Geeks To Geeks.

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


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: HasInverseSetField.java,v 1.1 2003/04/28 00:52:18 jackknifebarber Exp $
9  */

10
11 package com.triactive.jdo.test;
12
13 import java.util.Set JavaDoc;
14
15
16 public interface HasInverseSetField extends HasNormalSetField
17 {
18     Set JavaDoc getInverseSet();
19
20     int getNumElementWidgets();
21 }
22
Popular Tags