//package org.gcube.portlets.user.databasesmanager.client; // // // //import com.google.gwt.core.client.GWT; //import com.google.gwt.user.client.rpc.AsyncCallback; //import com.google.gwt.user.client.rpc.ServiceDefTarget; // //public interface GreetingServiceAsync //{ // // /** // * GWT-RPC service asynchronous (client-side) interface // * @see org.com.example.TestApp.client.GreetingService // */ // void greetServer( java.lang.String name, AsyncCallback callback ); // // // /** // * Utility class to get the RPC Async interface from client-side code // */ // public static final class Util // { // private static GreetingServiceAsync instance; // // public static final GreetingServiceAsync getInstance() // { // if ( instance == null ) // { // instance = (GreetingServiceAsync) GWT.create( GreetingService.class ); // } // return instance; // } // // private Util() // { // // Utility class should not be instanciated // } // } //}