Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -16,13 +16,13 @@
16 16
17 17 package com.gwtmobile.ui.kitchensink.client.communication;
18 18
19 - import com.google.gwt.user.client.rpc.RemoteService;
20 - import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
19 + import com.google.gwt.user.client.rpc.*;
21 20
22 21 /**
23 22 * The client side stub for the RPC service.
24 23 */
25 24 @RemoteServiceRelativePath("rpc")
26 25 public interface RpcService extends RemoteService {
27 - String greetServer(String name) throws IllegalArgumentException;
26 + String greetServer( String name )
27 + throws IllegalArgumentException;
28 28 }