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: HasInverseSetField.java,v 1.1 2003/04/28 00:52:18 jackknifebarber Exp $
09: */
10:
11: package com.triactive.jdo.test;
12:
13: import java.util.Set;
14:
15: public interface HasInverseSetField extends HasNormalSetField {
16: Set getInverseSet();
17:
18: int getNumElementWidgets();
19: }
|