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.google.sample.beaconservice.Beacon.java

/**
 * A simple struct representation of a Beacon object. Supports basic parsing and serialization
 * to and from JSONObject.
 */
public class Beacon implements Parcelable {
    // These constants are in the Proximity Service Status enum:

From source file com.dhbwloerrach.dhbwcampusapp20.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 com.baasbox.android.BaasObject.java

/**
 * Base class for remote resources that can be saved and retrieved from
 * BaasBox.
 *
 * @author Andrea Tortorella
 * @since 0.7.3

From source file android.hawkencompanionapp.models.UserLoginSession.java

/**
 * Created by Phillip Adam Nash on 08/08/2014.
 *
 * A model to represent a credentials entered by the user.
 */
public final class UserLoginSession implements Parcelable {

From source file com.clover.sdk.v3.billing.DeviceCountInfo.java

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

    public java.lang.Long getTotalDevices() {
        return genClient.cacheGet(CacheKey.totalDevices);

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

/**
 * Device represents any Nest device. All devices (e.g. {@link Thermostat}, {@link Camera}, {@link
 * SmokeCOAlarm}) should extend Device and thus will contain all properties that Device contains.
 */
@JsonPropertyOrder(alphabetic = true)
@JsonIgnoreProperties(ignoreUnknown = true)

From source file org.opendatakit.database.queries.BindArgs.java

/**
 * This holds the list of objects that are bind arguments to the SQLite database.
 * The objects are primitive objects (String, Integer, Long, Float, Double, Boolean)
 */
@SuppressWarnings("serial")
public class BindArgs implements Parcelable, Serializable {

From source file com.richtodd.android.quiltdesign.block.PaperPiecedBlock.java

public class PaperPiecedBlock implements Parcelable {
    // private static final String TAG = "PaperPiecedBlock";

    //
    // Fields
    //

From source file com.iangclifton.auid.combinedviews.Property.java

/**
 * Represents a single Property such as a house or a condo.
 * 
 * This is thread safe and implements Parcelable for passing between Activities.
 * In this case, the Property simply reuses the raw JSON String to pass around
 * so that JSONObject can do the heavy lifting.

From source file com.jbirdvegas.mgerrit.objects.GooFileObject.java

public class GooFileObject implements Parcelable {

    // fields available from goo json api

    @SerializedName("id")
    private int mId;