Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/client/foundation/handler/ActionHandler.java

Diff revisions: vs.
  @@ -1,15 +1,15 @@
1 1 package com.temp.client.foundation.handler;
2 2
3 - import com.google.gwt.event.shared.EventHandler;
3 + import com.google.gwt.event.shared.*;
4 4
5 5 /**
6 6 * Action handler support handling the click action and the actual execution
7 7 * logic
8 8 *
9 - * @author ngchihou
10 - *
11 9 * @param <T>
10 + *
11 + * @author ngchihou
12 12 */
13 13 public interface ActionHandler<T> extends EventHandler {
14 - void execute(T value);
14 + void execute( T value );
15 15 }