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: InversePrimitive.java,v 1.3 2003/08/31 01:03:57 jackknifebarber Exp $
09: */package com.triactive.jdo.test;
10:
11: public class InversePrimitive extends Primitive {
12: private CollectionFieldTester tester;
13:
14: public InversePrimitive() {
15: super ();
16: }
17:
18: public CollectionFieldTester getTester() {
19: return tester;
20: }
21:
22: public void setTester(CollectionFieldTester tester) {
23: this.tester = tester;
24: }
25: }
|