Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/gwtUITrimmed/src/com/gwtmobile/ui/kitchensink/client/communication/RpcServiceAsync.java

Diff revisions: vs.
  @@ -16,12 +16,12 @@
16 16
17 17 package com.gwtmobile.ui.kitchensink.client.communication;
18 18
19 - import com.google.gwt.user.client.rpc.AsyncCallback;
19 + import com.google.gwt.user.client.rpc.*;
20 20
21 21 /**
22 22 * The async counterpart of <code>GreetingService</code>.
23 23 */
24 24 public interface RpcServiceAsync {
25 - void greetServer(String input, AsyncCallback<String> callback)
26 - throws IllegalArgumentException;
25 + void greetServer( String input, AsyncCallback<String> callback )
26 + throws IllegalArgumentException;
27 27 }