KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > functional > NestedBean


1 /*
2  * Copyright 2002,2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16
17 package test.functional;
18
19 import java.util.Date JavaDoc;
20
21 /**
22  * More Complex JavaBean used in serialisation tests.
23  *
24  * @author Patrick Martin
25  */

26 public class NestedBean {
27     private Date JavaDoc _startDate;
28     private String JavaDoc _testString;
29     private SimpleBean _simpleBean;
30     private SimpleBean[] _simpleBeanList;
31
32     public SimpleBean getSimpleBean() {
33         return _simpleBean;
34     }
35
36     public void setSimpleBean(SimpleBean simpleBean) {
37         this._simpleBean = simpleBean;
38     }
39
40     public SimpleBean[] getSimpleBeanList() {
41         return _simpleBeanList;
42     }
43
44     public void setSimpleBeanList(SimpleBean[] simpleBeanList) {
45         this._simpleBeanList = simpleBeanList;
46     }
47
48     public Date JavaDoc getStartDate() {
49         return _startDate;
50     }
51
52     public void setStartDate(Date JavaDoc startDate) {
53         this._startDate = startDate;
54     }
55
56     public String JavaDoc getTestString() {
57         return _testString;
58     }
59
60     public void setTestString(String JavaDoc testString) {
61         this._testString = testString;
62     }
63 }
64
Popular Tags