View Javadoc

1   /*
2    * ActionEventImpl.java
3    * Created on 21 Сентябрь 2006 г., 1:15
4    */
5   
6   package org.weda.action.impl;
7   
8   import org.weda.action.ActionEvent;
9   import org.weda.action.ActionExecutionContext;
10  
11  /**
12   *
13   * @author Mikhail Titov
14   */
15  public class ActionEventImpl implements ActionEvent{
16      private ActionExecutionContext executionContext;
17      
18      public ActionEventImpl() {
19      }
20      
21      public ActionEventImpl(ActionExecutionContext executionContext){
22          this.executionContext = executionContext;
23      }
24  
25      public ActionExecutionContext getExecutionContext() {
26          return executionContext;
27      }
28      
29  }