List of usage examples for android.os Parcelable interface-usage
From source file edu.umich.flowfence.common.TaintSet.java
public final class TaintSet implements Parcelable { private static final String TAG = "FF.TaintSet"; private static final boolean localLOGV = Log.isLoggable(TAG, Log.VERBOSE); private static final boolean localLOGD = Log.isLoggable(TAG, Log.DEBUG); public static final float NOT_TAINTED = Float.NEGATIVE_INFINITY;
From source file com.nestapi.lib.API.Structure.java
@SuppressWarnings("unused") public class Structure implements Parcelable { public static final Creator<Structure> CREATOR = new Creator<Structure>() { @Override public Structure createFromParcel(Parcel source) { return new Structure(source);
From source file com.facebook.notifications.internal.configuration.BodyConfiguration.java
public class BodyConfiguration implements Parcelable { public static final Creator<BodyConfiguration> CREATOR = new Creator<BodyConfiguration>() { @Override public BodyConfiguration createFromParcel(Parcel source) { return new BodyConfiguration(source); }
From source file com.mindmeapp.extensions.ExtensionData.java
/**
* A parcelable, serializable object representing data related to a {@link MindMeExtension} that
* should be shown to the user.
*
* <p>
* This class follows the <a href="http://en.wikipedia.org/wiki/Fluent_interface">fluent
From source file com.codebutler.farebot.card.Card.java
public abstract class Card implements Parcelable { private byte[] mTagId; private Date mScannedAt; protected Card(byte[] tagId, Date scannedAt) { mTagId = tagId;
From source file com.paymaya.sdk.android.checkout.models.Checkout.java
/** * A Checkout contains information about the buyer, the items inside the cart, transaction amount, * status of payment and other details. */ public final class Checkout implements Parcelable {
From source file com.getchute.android.photopickerplus.models.MediaResponseModel.java
/**
* This class encapsulates the response that is received from the server when
* uploading the selected media item(s) URL(s).
*
* It consists of list of {@link AssetModel}s, cliend ID, time of creation and
* update, store ID, {@link ParcelModel} and user {@link ProfileModel}.
From source file br.ufrj.ppgi.jemf.mobile.bean.HealthCareUnit.java
/** * @author Marcus Machado * */ public class HealthCareUnit extends AbstractHealthCareUnit implements Parcelable, Comparable<HealthCareUnit> {
From source file com.notalenthack.blaster.Command.java
/** * Class wraps an Edison device */ public class Command implements Parcelable { private static final String TAG = Command.class.getCanonicalName();
From source file com.eTilbudsavis.etasdk.model.Dealer.java
/**
* <p>This class is a representation of a dealer as the API v2 exposes it</p>
*
* <p>More documentation available on via our
* <a href="http://engineering.etilbudsavis.dk/eta-api/pages/references/dealers.html">Dealer Reference</a>
* documentation, on the engineering blog.