1 package org.kuali.student.common.ui.client.widgets.table.scroll;
2
3 @Deprecated
4 public class TableModelEvent {
5
6 public static final int RowInsert = 1;
7
8 public static final int RowUpdate = 2;
9
10 public static final int RowDelete = 3;
11 public static final int CellUpdate = 4;
12
13 public static final int TableStructure = 5;
14 public static final int TableData = 6;
15
16 protected int type;
17 protected int firstRow;
18 protected int lastRow;
19 protected int column;
20
21 public TableModelEvent(){
22
23 }
24
25 public int getFirstRow() {
26 return firstRow;
27 }
28
29 public void setFirstRow(int firstRow) {
30 this.firstRow = firstRow;
31 }
32
33 public int getLastRow() {
34 return lastRow;
35 }
36
37 public void setLastRow(int lastRow) {
38 this.lastRow = lastRow;
39 }
40
41 public int getColumn() {
42 return column;
43 }
44
45 public void setColumn(int column) {
46 this.column = column;
47 }
48
49 public int getType() {
50 return type;
51 }
52
53 public void setType(int type) {
54 this.type = type;
55 }
56
57
58 }