01: package org.objectweb.salome_tmf.api.data;
02:
03: public class ExecutionResultTestWrapper extends DataWrapper {
04:
05: TestWrapper excutedTest;
06: int idResExec;
07: String status;
08: ExecutionActionWrapper[] ActionResult;
09:
10: public TestWrapper getExcutedTest() {
11: return excutedTest;
12: }
13:
14: public void setExcutedTest(TestWrapper excutedTest) {
15: this .excutedTest = excutedTest;
16: }
17:
18: public int getIdResExec() {
19: return idResExec;
20: }
21:
22: public void setIdResExec(int idResExec) {
23: this .idResExec = idResExec;
24: }
25:
26: public String getStatus() {
27: return status;
28: }
29:
30: public void setStatus(String status) {
31: this .status = status;
32: }
33:
34: public ExecutionActionWrapper[] getActionResult() {
35: return ActionResult;
36: }
37:
38: public void setActionResult(ExecutionActionWrapper[] actionResult) {
39: ActionResult = actionResult;
40: }
41:
42: }
|