1 /*2 * State.java3 *4 * Created on Pirmadienis, 2004, Rugsėjo 6, 14.145 */6 7 package albel.tags.table.model;8 9 /**10 *11 * @author alblau12 */13 public class TableState14 {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