KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > albel > tags > table > model > TableState


1 /*
2  * State.java
3  *
4  * Created on Pirmadienis, 2004, Rugsėjo 6, 14.14
5  */

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

13 public class TableState
14 {
15     
16     /**
17      * Holds value of property selectedRow.
18      */

19     private Row selectedRow;
20     
21     /** Creates a new instance of State */
22     public TableState()
23     {
24     }
25     
26     /**
27      * Getter for property selectedRow.
28      * @return Value of property selectedRow.
29      */

30     public Row getSelectedRow()
31     {
32         return this.selectedRow;
33     }
34     
35     /**
36      * Setter for property selectedRow.
37      * @param selectedRow New value of property selectedRow.
38      */

39     public void setSelectedRow(Row selectedRow)
40     {
41         this.selectedRow = selectedRow;
42     }
43     
44 }
45
Popular Tags