KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > performance > TestClassForCopyPaste


1 /*
2  *
3  * The contents of this file are subject to the terms of the Common Development
4  * and Distribution License (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
8  * or http://www.netbeans.org/cddl.txt.
9  *
10  * When distributing Covered Code, include this CDDL Header Notice in each file
11  * and include the License file at http://www.netbeans.org/cddl.txt.
12  * If applicable, add the following below the CDDL Header, with the fields
13  * enclosed by brackets [] replaced by your own identifying information:
14  * "Portions Copyrighted [year] [name of copyright owner]"
15  *
16  * The Original Software is NetBeans. The Initial Developer of the Original
17  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
18  * Microsystems, Inc. All Rights Reserved.
19  */

20
21 package org.netbeans.test.performance;
22
23 /**
24  * Class to be pasted at the end of a java file during the copy-paste test.
25  * @author tonda
26  */

27 public class TestClassForCopyPaste {
28
29     /**
30      * 1
31      */

32     private int newField1;
33     /**
34      * 2
35      */

36     private int newField2;
37     /**
38      * 3
39      */

40     private int newField3;
41     /**
42      * 4
43      */

44     private int newField4;
45     /**
46      * 5
47      */

48     private int newField5;
49     /**
50      * 6
51      */

52     private int newField6;
53     /**
54      * 7
55      */

56     private int newField7;
57     /**
58      * 8
59      */

60     private int newField8;
61     /**
62      * 9
63      */

64     private int newField9;
65     /**
66      * 10
67      */

68     private int newField10;
69     
70     /** Creates a new instance of TestClassForCopyPaste */
71     public TestClassForCopyPaste() {
72     }
73     
74     /**
75      * Getter for property newField1.
76      * @return Value of property newField1.
77      */

78     public int getNewField1() {
79         return newField1;
80     }
81     
82     /**
83      * Setter for property newField1.
84      * @param newField1 New value of property newField1.
85      */

86     public void setNewField1(int newField1) {
87         this.newField1 = newField1;
88     }
89     
90     /**
91      * Getter for property newField2.
92      * @return Value of property newField2.
93      */

94     public int getNewField2() {
95         return newField2;
96     }
97     
98     /**
99      * Setter for property newField2.
100      * @param newField2 New value of property newField2.
101      */

102     public void setNewField2(int newField2) {
103         this.newField2 = newField2;
104     }
105     
106     /**
107      * Getter for property newField3.
108      * @return Value of property newField3.
109      */

110     public int getNewField3() {
111         return newField3;
112     }
113     
114     /**
115      * Setter for property newField3.
116      * @param newField3 New value of property newField3.
117      */

118     public void setNewField3(int newField3) {
119         this.newField3 = newField3;
120     }
121     
122     /**
123      * Getter for property newField4.
124      * @return Value of property newField4.
125      */

126     public int getNewField4() {
127         return newField4;
128     }
129     
130     /**
131      * Setter for property newField4.
132      * @param newField4 New value of property newField4.
133      */

134     public void setNewField4(int newField4) {
135         this.newField4 = newField4;
136     }
137     
138     /**
139      * Getter for property newField5.
140      * @return Value of property newField5.
141      */

142     public int getNewField5() {
143         return newField5;
144     }
145     
146     /**
147      * Setter for property newField5.
148      * @param newField5 New value of property newField5.
149      */

150     public void setNewField5(int newField5) {
151         this.newField5 = newField5;
152     }
153     
154     /**
155      * Getter for property newField6.
156      * @return Value of property newField6.
157      */

158     public int getNewField6() {
159         return newField6;
160     }
161     
162     /**
163      * Setter for property newField6.
164      * @param newField6 New value of property newField6.
165      */

166     public void setNewField6(int newField6) {
167         this.newField6 = newField6;
168     }
169     
170     /**
171      * Getter for property newField7.
172      * @return Value of property newField7.
173      */

174     public int getNewField7() {
175         return newField7;
176     }
177     
178     /**
179      * Setter for property newField7.
180      * @param newField7 New value of property newField7.
181      */

182     public void setNewField7(int newField7) {
183         this.newField7 = newField7;
184     }
185     
186     /**
187      * Getter for property newField8.
188      * @return Value of property newField8.
189      */

190     public int getNewField8() {
191         return newField8;
192     }
193     
194     /**
195      * Setter for property newField8.
196      * @param newField8 New value of property newField8.
197      */

198     public void setNewField8(int newField8) {
199         this.newField8 = newField8;
200     }
201     
202     /**
203      * Getter for property newField9.
204      * @return Value of property newField9.
205      */

206     public int getNewField9() {
207         return newField9;
208     }
209     
210     /**
211      * Setter for property newField9.
212      * @param newField9 New value of property newField9.
213      */

214     public void setNewField9(int newField9) {
215         this.newField9 = newField9;
216     }
217     
218     /**
219      * Getter for property newField10.
220      * @return Value of property newField10.
221      */

222     public int getNewField10() {
223         return newField10;
224     }
225     
226     /**
227      * Setter for property newField10.
228      * @param newField10 New value of property newField10.
229      */

230     public void setNewField10(int newField10) {
231         this.newField10 = newField10;
232     }
233     
234 }
235
Popular Tags