01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tcspring.beans;
05:
06: public class SimpleBean extends SimpleParentBean {
07:
08: private int intField;
09: private short shortField;
10: private byte byteField;
11: private char charField;
12: private double doubleField;
13: private float floatField;
14:
15: private int[] aintField;
16: private short[] ashortField;
17: private byte[] abyteField;
18: private char[] acharField;
19: private double[] adoubleField;
20: private float[] afloatField;
21:
22: private Object ObjectField;
23: private Object[] aObjectField;
24:
25: private SimpleBean1 simpleBean;
26: private SimpleBean2[] asimpleBean;
27:
28: }
|