01: package org.apache.ojb.odmg.shared;
02:
03: import org.apache.ojb.broker.Gourmet;
04:
05: /**
06: * class used to test polymorphic m:n collections (ODMG-variant)
07: * @author <a href="mailto:schneider@mendel.imp.univie.ac.at">Georg Schneider</a>
08: *
09: */
10: public class ODMGGourmet extends Gourmet {
11: public ODMGGourmet() {
12: }
13:
14: public ODMGGourmet(String name) {
15: super(name);
16: }
17: }
|