01: package org.swingml.action;
02:
03: /**
04: * @author dpitt
05: */
06: public class TableBrowserCellUpdateResult extends RemoteActionResult {
07:
08: String targetRowId = null;
09: String targetColId = null;
10: String value = null;
11:
12: /**
13: * @return Returns the targetCellId.
14: */
15: public String getTargetColId() {
16: return targetColId;
17: }
18:
19: /**
20: * @param targetCellId The targetCellId to set.
21: */
22: public void setTargetColId(String targetColId) {
23: this .targetColId = targetColId;
24: }
25:
26: /**
27: * @return Returns the targetRowId.
28: */
29: public String getTargetRowId() {
30: return targetRowId;
31: }
32:
33: /**
34: * @param targetRowId The targetRowId to set.
35: */
36: public void setTargetRowId(String targetRowId) {
37: this .targetRowId = targetRowId;
38: }
39:
40: /**
41: * @return Returns the value.
42: */
43: public String getValue() {
44: return value;
45: }
46:
47: /**
48: * @param value The value to set.
49: */
50: public void setValue(String value) {
51: this.value = value;
52: }
53: }
|