KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > verge > util > test > Bean3


1 /*
2  * Copyright (c) 2003, Inversoft
3  *
4  * This software is distribuable under the GNU Lesser General Public License.
5  * For more information visit gnu.org.
6  */

7 package com.inversoft.verge.util.test;
8
9
10 /**
11  * This class is a simple JavaBean that is used in testing.
12  *
13  * @author Brian Pontarelli
14  */

15 public class Bean3 {
16
17     private String JavaDoc property3;
18     private Integer JavaDoc integer3;
19
20     /** Gets the property3 property */
21     public String JavaDoc getProperty3() {
22         return property3;
23     }
24
25     /** Sets the property3 property */
26     public void setProperty3(String JavaDoc value) {
27         this.property3 = value;
28     }
29
30     /** Gets the Integer3 property */
31     public Integer JavaDoc getInteger3() {
32         return integer3;
33     }
34
35     /** Sets the Integer3 property */
36     public void setInteger3(Integer JavaDoc value) {
37         integer3 = value;
38     }
39 }
40
Popular Tags