KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > albel > tags > table > test > TestBean


1 /*
2  * TestBean.java
3  *
4  * Created on Penktadienis, 2004, Rugsėjo 3, 10.49
5  */

6
7 package albel.tags.table.test;
8
9 /**
10  *
11  * @author alblau
12  */

13 public class TestBean
14 {
15     
16     /** Holds value of property name. */
17     private String JavaDoc name;
18     
19     /** Holds value of property count. */
20     private int count;
21     
22     /** Creates a new instance of TestBean */
23     public TestBean()
24     {
25     }
26     
27     /** Getter for property name.
28      * @return Value of property name.
29      *
30      */

31     public String JavaDoc getName()
32     {
33         return this.name;
34     }
35     
36     /** Setter for property name.
37      * @param name New value of property name.
38      *
39      */

40     public void setName(String JavaDoc name)
41     {
42         this.name = name;
43     }
44     
45     /** Getter for property count.
46      * @return Value of property count.
47      *
48      */

49     public int getCount()
50     {
51         return this.count;
52     }
53     
54     /** Setter for property count.
55      * @param count New value of property count.
56      *
57      */

58     public void setCount(int count)
59     {
60         this.count = count;
61     }
62     
63 }
64
Popular Tags