01: package org.objectweb.salome_tmf.api.data;
02:
03: public class ExecutionActionWrapper extends DataWrapper {
04:
05: int idExecTest;
06: int idAction;
07: String result;
08: String effectivResult;
09: String awaitedResult;
10:
11: public String getAwaitedResult() {
12: return awaitedResult;
13: }
14:
15: public void setAwaitedResult(String awaitedResult) {
16: this .awaitedResult = awaitedResult;
17: }
18:
19: public String getEffectivResult() {
20: return effectivResult;
21: }
22:
23: public void setEffectivResult(String effectivResult) {
24: this .effectivResult = effectivResult;
25: }
26:
27: public int getIdAction() {
28: return idAction;
29: }
30:
31: public void setIdAction(int idAction) {
32: this .idAction = idAction;
33: }
34:
35: public int getIdExecTest() {
36: return idExecTest;
37: }
38:
39: public void setIdExecTest(int idExecTest) {
40: this .idExecTest = idExecTest;
41: }
42:
43: public String getResult() {
44: return result;
45: }
46:
47: public void setResult(String result) {
48: this.result = result;
49: }
50:
51: }
|