Example usage for com.google.gwt.requestfactory.shared EntityProxy interface-usage

List of usage examples for com.google.gwt.requestfactory.shared EntityProxy interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.requestfactory.shared EntityProxy interface-usage.

Usage

From source file com.acme.gwt.shared.TvChannelProxy.java

/**
 * Proxy object for a tv channel, with options to provide a name, icon/symbol, and channel number.
 * Number is almost certainly based on particular user details, as channels can have different
 * mappings through different providers and in different areas.
 * <p/>
 * TvChannel objects do not themselves contain more data, at least on the client, as there could be

From source file com.acme.gwt.shared.TvEpisodeProxy.java

/**
 * An individual episode of a TvShowProxy. Contains a reference to the show that it belongs to, and to
 * its place in that show, as well as a brief name and description of the episode.
 *
 * @author colin
 * @todo Do we want a Season object as well? Only utility I could see in that is to provide meta-

From source file com.acme.gwt.shared.TvScheduledEpisodeProxy.java

/**
 * Maps a TvChannel,TvAirTime tuple to a single episode, as only one episode can be shown at a given
 * time on a given channel.
 * <p/>
 * Okay, a given User,TvChannel, since the same TvChannel can have different times in different zones.
 * But I think that a TvChannel object is already local to the given user, so User is assumed.

From source file com.acme.gwt.shared.TvShowProxy.java

/**
 * First draft at representing an entire show. Does not drag the full list of episodes and seasons
 * along with it, as this could be quite extensive, and does not indicate channels or show times, as
 * these could vary.
 *
 * @author colin

From source file com.eatrightapp.shared.MenuItemProxy.java

@ProxyFor(MenuItem.class)
public interface MenuItemProxy extends EntityProxy {
    Long getId();

    RestaurantProxy getRestaurant();

From source file com.eatrightapp.shared.MenuItemReviewProxy.java

@ProxyFor(MenuItemReview.class)
public interface MenuItemReviewProxy extends EntityProxy {
    Long getId();

    MenuItemProxy getMenuItem();

From source file com.eatrightapp.shared.RestaurantProxy.java

@ProxyFor(Restaurant.class)
public interface RestaurantProxy extends EntityProxy {

    Long getId();

    String getPlacesReference();

From source file com.eatrightapp.shared.UserAccountProxy.java

@ProxyFor(UserAccount.class)
public interface UserAccountProxy extends EntityProxy {
    Long getId();

    void setId(Long id);

From source file com.google.gwt.sample.expenses.client.request.EmployeeProxy.java

/**
 * "API Generated" DTO interface based on
 * {@link com.google.gwt.sample.expenses.server.domain.Employee}.
 * <p>
 * IRL this class will be generated by a JPA-savvy tool run before compilation.
 */

From source file com.google.gwt.sample.expenses.client.request.ExpenseProxy.java

/**
 * "API Generated" DTO interface based on
 * {@link com.google.gwt.sample.expenses.server.domain.Expense}.
 * <p>
 * IRL this class will be generated by a JPA-savvy tool run before compilation.
 */