KickJava   Java API By Example, From Geeks To Geeks.

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


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. This
12  * Java bean does not have a default constructor.
13  *
14  * @author Brian Pontarelli
15  */

16 public class Bean4 {
17
18     private String JavaDoc string1;
19
20     /** No default constructor */
21     public Bean4(String JavaDoc name) {
22         super();
23     }
24
25     /** Gets the String1 property */
26     public String JavaDoc getString1() {
27         return string1;
28     }
29
30     /** Sets the String1 property */
31     public void setString1(String JavaDoc value) {
32         string1 = value;
33     }
34 }
35
Popular Tags