Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 23 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/command/CommandHandlerAdaptor.java

Diff revisions: vs.
  @@ -6,6 +6,7 @@
6 6 public abstract class CommandHandlerAdaptor implements Command,
7 7 ClickHandler
8 8 {
9 + @Override
9 10 public void onClick( ClickEvent pEvent )
10 11 {
11 12 /**
  @@ -15,5 +16,6 @@
15 16 DeferredCommand.addCommand( this );
16 17 }
17 18
19 + @Override
18 20 public abstract void execute();
19 21 }