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.android.emailcommon.provider.Account.java

public final class Account extends EmailContent implements Parcelable {
    public static final String TABLE_NAME = "Account";

    // Define all pseudo account IDs here to avoid conflict with one another.
    /**
     * Pseudo account ID to represent a "combined account" that includes messages and mailboxes

From source file com.android.mail.providers.Attachment.java

public class Attachment implements Parcelable {
    public static final int MAX_ATTACHMENT_PREVIEWS = 2;
    public static final String LOG_TAG = LogTag.getLogTag();
    /**
     * Workaround for b/8070022 so that appending a null partId to the end of a
     * uri wouldn't remove the trailing backslash

From source file com.amossys.hooker.common.InterceptEvent.java

/**
 * InterceptEvent class contains data we want to extract.
 * This class implements Parcelable so we can send it to our Service.
 * @author Dimitri Kirchner & Georges Bossert.
 *
 */

From source file com.facebook.login.LoginClient.java

class LoginClient implements Parcelable {
    LoginMethodHandler[] handlersToTry;
    int currentHandler = -1;
    Fragment fragment;
    OnCompletedListener onCompletedListener;
    BackgroundProcessingListener backgroundProcessingListener;

From source file info.icefilms.icestream.browse.Location.java

public abstract class Location implements Parcelable {
    // Class used to pass callback methods
    public static class Callback {
        // Variable
        private int mConnectionTimeout;
        private boolean mError;

From source file com.baasbox.android.BaasDocument.java

/**
 * Represents a BaasBox document.
 * <p>
 * A document is a schema less JSON like entity that belongs to a given collection on the server.
 * </p>
 * <p>

From source file com.baasbox.android.BaasUser.java

/**
 * Represents a User of the BaasBox service.
 * <p/>
 * You can create a new instance through the factory method
 * {@link #withUserName(String)}
 * <p/>

From source file edu.vuum.mocca.storage.StoryData.java

/**
 * Custom ORM container class, for Story Data.
 * <p>
 * This class is meant as a helper class for those working with the
 * ContentProvider and SQLiteDatabase. The use of this class is completely optional.
 * <p>

From source file edu.vuum.mocca.orm.StoryData.java

/**
 * Custom ORM container class, for Story Data.
 * <p>
 * This class is meant as a helper class for those working with the
 * ContentProvider. The use of this class is completely optional.
 * <p>

From source file com.bravo.ecm.service.ScannedFile.java

public class ScannedFile implements Parcelable, Comparable<ScannedFile>, Serializable {
    private static final long serialVersionUID = -1908968223219359322L;
    private static int m_SortType;
    public static final int SORT_BY_NAME = 0;
    public static final int SORT_BY_AUTHOR = 1;
    public static final int SORT_BY_AUTHOR_LAST = 2;