KickJava   Java API By Example, From Geeks To Geeks.

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


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: InversePrimitive.java,v 1.3 2003/08/31 01:03:57 jackknifebarber Exp $
9  */

10
11 package com.triactive.jdo.test;
12
13
14 public class InversePrimitive extends Primitive
15 {
16     private CollectionFieldTester tester;
17
18     public InversePrimitive()
19     {
20         super();
21     }
22
23     public CollectionFieldTester getTester()
24     {
25         return tester;
26     }
27
28     public void setTester(CollectionFieldTester tester)
29     {
30         this.tester = tester;
31     }
32 }
33
Popular Tags