1   /*
2    * BeanMappingPerfTest - Tests Java Bean to Java Bean mapping
3    * Copyright (C) 2007 Christian Schenk
4    *
5    * This program is free software; you can redistribute it and/or
6    * modify it under the terms of the GNU General Public License
7    * as published by the Free Software Foundation; either version 2
8    * of the License, or (at your option) any later version.
9    * 
10   * This program is distributed in the hope that it will be useful,
11   * but WITHOUT ANY WARRANTY; without even the implied warranty of
12   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   * GNU General Public License for more details.
14   * 
15   * You should have received a copy of the GNU General Public License
16   * along with this program; if not, write to the Free Software
17   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
18   */
19  package org.christianschenk.beanintrospect.beans;
20  
21  public class IntBean {
22  
23  	private int int1;
24  	private int int2;
25  	private int int3;
26  	private int int4;
27  	private int int5;
28  	private int int6;
29  	private int int7;
30  	private int int8;
31  	private int int9;
32  	private int int10;
33  
34  	public IntBean() {
35  	}
36  
37  	public IntBean(final int int1, final int int2, final int int3, final int int4, final int int5, final int int6, final int int7, final int int8, final int int9, final int int10) {
38  		this.int1 = int1;
39  		this.int2 = int2;
40  		this.int3 = int3;
41  		this.int4 = int4;
42  		this.int5 = int5;
43  		this.int6 = int6;
44  		this.int7 = int7;
45  		this.int8 = int8;
46  		this.int9 = int9;
47  		this.int10 = int10;
48  	}
49  
50  	public int getInt1() {
51  		return this.int1;
52  	}
53  
54  	public void setInt1(int int1) {
55  		this.int1 = int1;
56  	}
57  
58  	public int getInt10() {
59  		return this.int10;
60  	}
61  
62  	public void setInt10(int int10) {
63  		this.int10 = int10;
64  	}
65  
66  	public int getInt2() {
67  		return this.int2;
68  	}
69  
70  	public void setInt2(int int2) {
71  		this.int2 = int2;
72  	}
73  
74  	public int getInt3() {
75  		return this.int3;
76  	}
77  
78  	public void setInt3(int int3) {
79  		this.int3 = int3;
80  	}
81  
82  	public int getInt4() {
83  		return this.int4;
84  	}
85  
86  	public void setInt4(int int4) {
87  		this.int4 = int4;
88  	}
89  
90  	public int getInt5() {
91  		return this.int5;
92  	}
93  
94  	public void setInt5(int int5) {
95  		this.int5 = int5;
96  	}
97  
98  	public int getInt6() {
99  		return this.int6;
100 	}
101 
102 	public void setInt6(int int6) {
103 		this.int6 = int6;
104 	}
105 
106 	public int getInt7() {
107 		return this.int7;
108 	}
109 
110 	public void setInt7(int int7) {
111 		this.int7 = int7;
112 	}
113 
114 	public int getInt8() {
115 		return this.int8;
116 	}
117 
118 	public void setInt8(int int8) {
119 		this.int8 = int8;
120 	}
121 
122 	public int getInt9() {
123 		return this.int9;
124 	}
125 
126 	public void setInt9(int int9) {
127 		this.int9 = int9;
128 	}
129 }