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

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

Introduction

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

Usage

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

/**
 * Represents a block of time that something can air - start time and duration in minutes. There is
 * probably a neater way to represent this, but I can't think of it right now.
 *
 * @author colin
 */

From source file com.googlecode.gwtgae2011.shared.proxy.PointProxy.java

@ProxyFor(Point.class)
public interface PointProxy extends ValueProxy {
    Float getX();

    Float getY();

From source file com.googlecode.gwtgae2011.shared.proxy.StrokeProxy.java

@ProxyFor(Stroke.class)
public interface StrokeProxy extends ValueProxy {
    List<PointProxy> getPoints();

    void setPoints(List<PointProxy> pointProxies);
}