Example usage for com.google.gwt.user.rebind.rpc ServiceInterfaceProxyGenerator subclass-usage

List of usage examples for com.google.gwt.user.rebind.rpc ServiceInterfaceProxyGenerator subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.rebind.rpc ServiceInterfaceProxyGenerator subclass-usage.

Usage

From source file com.googlecode.gwtphonegap.rebind.PhoneGapServiceInterfaceProxyGenerator.java

public class PhoneGapServiceInterfaceProxyGenerator extends ServiceInterfaceProxyGenerator {

    @Override
    protected ProxyCreator createProxyCreator(JClassType remoteService) {
        return new PhonegapProxyCreator(remoteService);
    }

From source file com.tyf.gwtphp.rebind.PHPRemoteServiceGenerator.java

public class PHPRemoteServiceGenerator extends ServiceInterfaceProxyGenerator {

    private static final Set<JType> customObjectSet = new HashSet<JType>();
    private static final Set<String> generatedClasses = new HashSet<String>();

    /**

From source file org.cruxframework.crux.core.rebind.rpc.CruxServiceGenerator.java

/**
 * This class overrides, through CruxProxyCreator, the GWT Service Generator to add a wrapper class around the original generated class. 
 * 
 * <p>
 * The wrapper has two goals:<br>
 *  - Point all requests that does not inform an endPoint to the Crux FrontController Servlet.<br>

From source file org.opencms.gwt.rebind.rpc.CmsRpcServiceGenerator.java

/**
 * Creates proxies supporting optionally synchronized RPC methods using the 
 * {@link com.google.gwt.user.client.rpc.SynchronizedRpcRequest} annotation.<p>
 */
public class CmsRpcServiceGenerator extends ServiceInterfaceProxyGenerator {

From source file org.rhq.coregui.user.rebind.rpc.TrackingServiceInterfaceProxyGenerator.java

/**
 * A generator used to create remote service proxy wrappers that will inject additional management and monitoring
 * hooks into the RPC lifecycle.
 * 
 * @author Joseph Marques
 */

From source file org.rhq.enterprise.gui.coregui.user.rebind.rpc.TrackingServiceInterfaceProxyGenerator.java

/**
 * A generator used to create remote service proxy wrappers that will inject additional management and monitoring
 * hooks into the RPC lifecycle.
 * 
 * @author Joseph Marques
 */

From source file org.unitime.timetable.gwt.command.generator.GwtRpcProxyGenerator.java

public class GwtRpcProxyGenerator extends ServiceInterfaceProxyGenerator {
    private GeneratorContext iGeneratorContext = null;

    public GwtRpcProxyGenerator() {
        super();
    }