01: package org.apache.ojb.odmg.shared;
02:
03: import java.io.Serializable;
04:
05: import org.apache.ojb.odmg.shared.TestClassB;
06:
07: /**
08: * This class is used to test the correct assignment
09: * of foreign keys when the referenced object (i.e. this
10: * class is a dynamic proxy)
11: * @author <a href="mailto:schneider@mendel.imp.univie.ac.at">Georg Schneider</a>
12: *
13: */
14: public class TestClassBProxy extends TestClassB implements
15: TestClassBProxyI, Serializable {
16: public TestClassBProxy() {
17: }
18: }
|