Example usage for com.google.gwt.rpc.client RpcService interface-usage

List of usage examples for com.google.gwt.rpc.client RpcService interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.rpc.client RpcService interface-usage.

Usage

From source file com.didactilab.gwt.phpderpctest.client.service.DataService.java

public class DataService implements RpcService {

}

From source file com.ensisa.table.client.AuditionCalendarService.java

public interface AuditionCalendarService extends RpcService {

    Personne[] getPeople(int startIndex, int maxCount);

}

From source file com.ensisa.table.client.SchoolCalendarService.java

/**
 * The interface for the RPC server endpoint to get school calendar information.
 */
public interface SchoolCalendarService extends RpcService {

    Person[] getPeople(int startIndex, int maxCount);

From source file com.google.gwt.sample.dynatable.client.SchoolCalendarService.java

/**
 * The interface for the RPC server endpoint to get school calendar information.
 */
public interface SchoolCalendarService extends RpcService {

    Person[] getPeople(int startIndex, int maxCount);

From source file com.google.gwt.sample.validation.client.GreetingService.java

/**
 * The client side stub for the RPC service.
 */
@RemoteServiceRelativePath("greet")
public interface GreetingService extends RpcService {
    SafeHtml greetServer(Person name) throws IllegalArgumentException, ConstraintViolationException;

From source file org.qualipso.factory.ui.service.oslc.client.iserver.OSLCServlet.java

/**
 * Interface of the server part for the OSLC service.
 * 
 * @author Huihui Yang <yhh.ruoya@gmail.com>
 * @date 14 April 2010
 */