Subversion Repository Public Repository

litesoft

Diff Revisions 642 vs 948 for /trunk/GWT_Sandbox/gwtUITrimmed/src/com/gwtmobile/ui/kitchensink/client/GreetingServiceAsync.java

Diff revisions: vs.
  @@ -1,11 +1,11 @@
1 1 package com.gwtmobile.ui.kitchensink.client;
2 2
3 - import com.google.gwt.user.client.rpc.AsyncCallback;
3 + import com.google.gwt.user.client.rpc.*;
4 4
5 5 /**
6 6 * The async counterpart of <code>GreetingService</code>.
7 7 */
8 8 public interface GreetingServiceAsync {
9 - void greetServer(String input, AsyncCallback<String> callback)
10 - throws IllegalArgumentException;
9 + void greetServer( String input, AsyncCallback<String> callback )
10 + throws IllegalArgumentException;
11 11 }