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: DependentView.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 depends on fields in ReliedOnView. If these views are
17: * created out of order, 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 DependentView {
23: private int inverseInverseInt;
24: private Integer inverseInverseIntObj;
25:
26: /**
27: * Default constructor required since this is a PersistenceCapable class.
28: */
29: protected DependentView() {
30: }
31:
32: /**
33: * Getter for inverseInverseInt
34: * @return inverseInverseInt
35: */
36: public int getInverseInverseInt() {
37: return this .inverseInverseInt;
38: }
39:
40: /**
41: * Getter for inverseInverseIntObj
42: * @return inverseInverseIntObj
43: */
44: public Integer getInverseInverseIntObj() {
45: return this.inverseInverseIntObj;
46: }
47: }
|