KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > beans > test > SuperBean


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.beans.test;
8
9
10 /**
11  * This class is a simple JavaBean parent class
12  *
13  * @author Brian Pontarelli
14  */

15 public class SuperBean {
16
17     private String JavaDoc fromSuper;
18
19     /** Gets the FromSuper property */
20     public String JavaDoc getFromSuper() {
21         return fromSuper;
22     }
23     
24     /** Sets the FromSuper property */
25     public void setFromSuper(String JavaDoc value) {
26         fromSuper = value;
27     }
28 }
29
30
Popular Tags