1
2
3
4
5
6
7 package org.weda.model.impl;
8
9 /**
10 *
11 * @author Mikhail Titov
12 */
13 public class TableModelDataId {
14 private String modelName;
15 private int col;
16 private int row;
17
18 public TableModelDataId(){}
19
20 public TableModelDataId(String modelName, int row, int col){
21 this.modelName = modelName;
22 this.col = col;
23 this.row = row;
24 }
25
26 public String getModelName() {
27 return modelName;
28 }
29
30 public void setModelName(String modelName) {
31 this.modelName = modelName;
32 }
33
34 public int getCol() {
35 return col;
36 }
37
38 public void setCol(int col) {
39 this.col = col;
40 }
41
42 public int getRow() {
43 return row;
44 }
45
46 public void setRow(int row) {
47 this.row = row;
48 }
49
50 }