1   /*
2    * TestActionContainer4.java
3    *
4    * Created on 19 Март 2006 г., 13:21
5    */
6   
7   package org.weda.action;
8   
9   /**
10   *
11   * @author Mikhail Titov
12   */
13  public class TestActionContainer4 extends TestActionContainer{
14      private boolean executed = false;
15      private boolean linkActionExecuted = false;
16      private boolean cancelAction = false;
17  
18      public boolean isExecuted() {
19          return executed;
20      }
21  
22      public void setExecuted(boolean executed) {
23          this.executed = executed;
24      }
25  
26      public boolean isLinkActionExecuted() {
27          return linkActionExecuted;
28      }
29  
30      public void setLinkActionExecuted(boolean linkActionExecuted) {
31          this.linkActionExecuted = linkActionExecuted;
32      }
33  
34      public boolean isCancelAction() {
35          return cancelAction;
36      }
37  
38      public void setCancelAction(boolean cancelAction) {
39          this.cancelAction = cancelAction;
40      }
41  }