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 jp.alessandro.android.iab.Item.java

/**
 * Represents an in-app product's listing details.
 */
public class Item implements Parcelable {

    private final String mOriginalJson;

From source file com.lugia.timetable.Event.java

final class Event implements Parcelable {
    private String mName;
    private String mVenue;
    private String mNote;

    private long mId;

From source file nya.miku.wishmaster.ui.gallery.GalleryInitResult.java

public class GalleryInitResult implements Parcelable {
    public List<Triple<AttachmentModel, String, String>> attachments;
    public int initPosition;
    public boolean shouldWaitForPageLoaded;

    public GalleryInitResult() {

From source file com.nttec.everychan.ui.gallery.GalleryInitResult.java

public class GalleryInitResult implements Parcelable {
    public List<Triple<AttachmentModel, String, String>> attachments;
    public int initPosition;
    public boolean shouldWaitForPageLoaded;

    public GalleryInitResult() {

From source file edu.umich.oasis.common.CallParam.java

public final class CallParam implements Parcelable {

    private static final String TAG = "OASIS.CallParam";

    public static final int TYPE_NULL = 0x00;
    public static final int TYPE_DATA = 0x01;

From source file edu.umich.flowfence.common.CallParam.java

public final class CallParam implements Parcelable {

    private static final String TAG = "FF.CallParam";

    public static final int TYPE_NULL = 0x00;
    public static final int TYPE_DATA = 0x01;

From source file com.codebutler.farebot.card.desfire.DesfireFile.java

public class DesfireFile implements Parcelable {
    private int mId;
    private DesfireFileSettings mSettings;
    private byte[] mData;

    public static DesfireFile create(int fileId, DesfireFileSettings fileSettings, byte[] fileData) {

From source file io.github.data4all.model.data.TransformationParamBean.java

/**
 * This class delivers all the data needed for the calculation
 * 
 * @author burghardt
 * @version 1.0
 *

From source file net.henriquerocha.android.codebits.api.Talk.java

/**
 * A Codebits Talk
 * 
 * @author Henrique Rocha <hmrocha@gmail.com>
 * 
 */

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

/**
 * SmokeCOAlarm represents and contains all properties of a Nest smoke+CO alarm device.
 */
@JsonPropertyOrder(alphabetic = true)
@JsonIgnoreProperties(ignoreUnknown = true)
public final class SmokeCOAlarm extends Device implements Parcelable {