1 /*
2 * ActionListenerService.java
3 * Created on 27 Сентябрь 2006 г., 0:47
4 */
5
6 package org.weda.action;
7
8 /**
9 *
10 * @author Mikhail Titov
11 */
12 public interface ActionListenerService extends ActionListener{
13 public boolean isBeforeExecuteExecuted();
14 public boolean isAfterExecuteExecuted();
15 }