As alternative to naming conventions, Async Interfaces would be
usefull inherit from a Generic service async interface, referencing
the remote service interface:

interface ServiceAsync<T extends RemoteService>{}

public interface MyService extends RemoteService {
  public String myMethod(String s);
}

public interface NoMoreNamingConventions extends
ServiceAsync<MyService>{
  public void myMethod(String s, AsyncCallback<String> callback);
}

- Andrés
--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---

Reply via email to