Example usage for com.google.gwt.user.client.rpc IsSerializable interface-usage

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

Introduction

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

Usage

From source file at.ait.dme.yuma.client.image.ImageFragment.java

/**
 * represents an image fragment
 * 
 * @author Christian Sadilek
 */
public class ImageFragment implements Serializable, IsSerializable {

From source file at.ait.dme.yuma.client.server.FindPlaceResponse.java

public class FindPlaceResponse implements IsSerializable {

    /**
     * Place name
     */
    public String name;

From source file at.ait.dme.yuma.server.map.transformation.ControlPoint.java

/**
 * Simple class that represents a control point.
 * 
 * @author Rainer Simon
 * @author Christian Sadilek
 *

From source file at.ait.dme.yuma.suite.apps.core.shared.model.MediaFragment.java

/**
 * A base class for all types of media fragments.
 * 
 * @author Rainer Simon
 */
public abstract class MediaFragment implements Serializable, IsSerializable {

From source file at.ait.dme.yuma.suite.apps.map.server.geo.transformation.ControlPoint.java

/**
 * Simple class that represents a control point.
 * 
 * @author Rainer Simon
 * @author Christian Sadilek
 *

From source file at.ait.dme.yuma.suite.apps.map.shared.server.FindPlaceResponse.java

public class FindPlaceResponse implements IsSerializable {

    /**
     * Place name
     */
    public String name;

From source file au.com.gworks.gwt.petstore.client.service.AccountInfo.java

public class AccountInfo implements IsSerializable {
    public String username;
    public String password;
    public String email;
    public String firstName;
    public String lastName;

From source file au.com.gworks.gwt.petstore.client.service.AisleInfo.java

public class AisleInfo implements IsSerializable {
    public String id;
    public String name;

    public AisleInfo() {
    }

From source file au.com.gworks.gwt.petstore.client.service.BaseItemRefInfo.java

public class BaseItemRefInfo implements IsSerializable {
    /**
     * convenient client-side cache. content is this cache
     * is not intended to be sent of the wire.
     */
    /*transient*/ public Map cargo = new HashMap();

From source file au.com.gworks.gwt.petstore.client.service.CartInfo.java

public class CartInfo implements IsSerializable {
    public ArrayList/*<CartItemRefInfo>*/ items = new ArrayList();
    public float subTotal;
    public int itemsCount;
}