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 com.paranoid.gerrit.objects.CommitComment.java

public class CommitComment implements Parcelable {
    private static final String KEY_REVISION_NUMBER = "_revision_number";
    private static final boolean DEBUG = false;
    private static final String TAG = CommitComment.class.getSimpleName();
    private JSONObject mJsonObject;
    private int mRevisionNumber;

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

public class Review extends JsonModel implements Parcelable {

    @JsonProperty(ASPECTS)
    private List<AspectRating> aspectRatings;

    @JsonProperty(AUTHOR_NAME)

From source file edgargtzg.popularmovies.MovieItemVideo.java

/**
 * Contains the video information of a movie item.
 */
public class MovieItemVideo implements Parcelable {

    /**

From source file com.gmail.taneza.ronald.carbs.common.FoodItem.java

public class FoodItem implements Parcelable {

    private String mTableName;
    private int mId;
    private int mQuantity;
    private long mTimeAddedMsec;

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

/**
 * Metadata holds the information related to your Nest client.
 */
@JsonPropertyOrder(alphabetic = true)
@JsonIgnoreProperties(ignoreUnknown = true)
public class Metadata implements Parcelable {

From source file com.clover.sdk.v1.app.AppNotification.java

/**
 * Represents a notification sent to an app.
 */
public class AppNotification implements Parcelable {

    private static final String TAG = AppNotification.class.getSimpleName();

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

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

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

/**
 * With this PurchaseInfo a developer is able verify
 * a purchase from the google play store on his own
 * server. An example implementation of how to verify
 * a purchase you can find <a href="https://github.com/mgoldsborough/google-play-in-app-billing-verification/blob/master/library/GooglePlay/InAppBilling/GooglePlayResponseValidator.php#L64">here</a>
 */

From source file com.clover.sdk.v3.base.Reference.java

@SuppressWarnings("all")
public final class Reference
        implements android.os.Parcelable, com.clover.sdk.v3.Validator, com.clover.sdk.JSONifiable {

    /**
     * Unique identifier

From source file com.sawyer.advadapters.app.data.MovieItem.java

public class MovieItem implements Comparable<MovieItem>, Parcelable {
    public static final Creator<MovieItem> CREATOR = new MovieCreator();
    public static final String JSON_TITLE = "title";
    public static final String JSON_YEAR = "year";
    public static final String JSON_IS_RECOMMENDED = "recommended";
    public static final String JSON_BARCODE = "barcode";