KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tcspring > beans > SimpleBean


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tcspring.beans;
5
6
7 public class SimpleBean extends SimpleParentBean {
8
9   private int intField;
10   private short shortField;
11   private byte byteField;
12   private char charField;
13   private double doubleField;
14   private float floatField;
15
16   private int[] aintField;
17   private short[] ashortField;
18   private byte[] abyteField;
19   private char[] acharField;
20   private double[] adoubleField;
21   private float[] afloatField;
22   
23   private Object JavaDoc ObjectField;
24   private Object JavaDoc[] aObjectField;
25
26   private SimpleBean1 simpleBean;
27   private SimpleBean2[] asimpleBean;
28   
29 }
30
Popular Tags