Example usage for android.os Parcelable interface-usage

List of usage examples for android.os Parcelable interface-usage

Introduction

In this page you can find the example usage for android.os Parcelable interface-usage.

Usage

From source file ir.aarani.bazaar.billing.TransactionDetails.java

public class TransactionDetails implements Parcelable {

    public static final Creator<TransactionDetails> CREATOR = new Creator<TransactionDetails>() {
        public TransactionDetails createFromParcel(Parcel source) {
            return new TransactionDetails(source);
        }

From source file com.google.samples.apps.friendlyping.model.Ping.java

/**
 * A ping.
 */
public class Ping implements Parcelable {

    // The ping message

From source file no.ntnu.osnap.social.models.Group.java

/**
 * oSNAP class representing a group.
 *
 * @author Emanuele 'lemrey' Di Santo
 */
public class Group extends Model implements Parcelable {

From source file com.github.jobs.bean.AboutMeService.java

/**
 * @author cristian
 * @version 1.0
 */
public class AboutMeService implements Parcelable {
    @JsonProperty("display_name")

From source file net.sourcewalker.garanbot.api.BarcodeResult.java

/**
 * Result returned by the server when querying for a product by barcode.
 * 
 * @author Xperimental
 */
public class BarcodeResult implements Parcelable {

From source file com.tigerpenguin.places.model.Geometry.java

class Geometry extends JsonModel implements Parcelable {

    @JsonProperty(LOCATION)
    private PlaceLocation location;

    @JsonProperty(VIEWPORT)

From source file ir.aarani.bazaar.billing.SkuDetails.java

public class SkuDetails implements Parcelable {

    public static final Creator<SkuDetails> CREATOR = new Creator<SkuDetails>() {
        public SkuDetails createFromParcel(Parcel source) {
            return new SkuDetails(source);
        }

From source file com.wellsandwhistles.android.redditsp.image.ImageInfo.java

public class ImageInfo implements Parcelable {

    public final String urlOriginal;
    public final String urlBigSquare;

    public final String title;

From source file com.nestlabs.sdk.NestToken.java

/**
 * NestToken contains the access token and expiry duration associated with an authenticated user.
 */
public final class NestToken implements Parcelable {

    static final String KEY_TOKEN = "access_token";

From source file org.mozilla.mozstumbler.service.datahandling.StumblerBundle.java

public final class StumblerBundle implements Parcelable {
    private final int mPhoneType;
    private final Location mGpsPosition;
    private final Map<String, ScanResult> mWifiData;
    private final Map<String, CellInfo> mCellData;