01: /*
02: * Copyright 2002 (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: ReliedOnView.java,v 1.2 2003/02/22 21:53:17 jackknifebarber Exp $
09: */
10:
11: package com.triactive.jdo.test.views;
12:
13: import com.triactive.jdo.test.*;
14:
15: /**
16: * This view has fields that DependentView references. If this view is not
17: * created before DependentView, view creation will fail.
18: *
19: * @author <a href="mailto:pierreg0@users.sourceforge.net">Kelly Grizzle</a>
20: * @version $Revision: 1.2 $
21: */
22: public class ReliedOnView {
23: private int inverseInt;
24: private Integer inverseIntObj;
25:
26: /**
27: * Default constructor required since this is a PersistenceCapable class.
28: */
29: protected ReliedOnView() {
30: }
31:
32: /**
33: * Getter for inverseInt
34: * @return inverseInt
35: */
36: public int getInverseInt() {
37: return this .inverseInt;
38: }
39:
40: /**
41: * Getter for inverseIntObj
42: * @return inverseIntObj
43: */
44: public Integer getInverseIntObj() {
45: return this.inverseIntObj;
46: }
47: }
|