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.liferay.alerts.model.User.java

/**
 * @author Bruno Farache
 */
public class User extends BaseModel implements Parcelable {

    public static final Creator<User> CREATOR = new Creator<User>() {

From source file com.dwg.weibo.entity.Geo.java

/**
 * ??
 * 
 * @author SINA
 * @since 2013-11-24
 */

From source file com.google.samples.apps.friendlyping.model.Pinger.java

/**
 * A registered entity that is able to ping another entity.
 */
public class Pinger implements Parcelable {

    private final String mName;

From source file no.ntnu.osnap.social.models.Message.java

/**
 * oSNAP class representing a message, which is some text sent by a user to
 * another.
 *
 * @author Emanuele 'lemrey' Di Santo
 */

From source file com.clover.sdk.v1.customer.Address.java

/**
 * A class representing an address associated with a customer. Instances of this object are returned
 * by the {@link com.clover.sdk.v1.customer.ICustomerService#addAddress(String customerId, String address1,
 * String address2, String address3, String city, String state, String zip, ResultStatus resultStatus)} method or as part of a
 * {@link com.clover.sdk.v1.customer.Customer} object.
 */

From source file com.github.capone.protocol.entities.Service.java

public class Service implements Parcelable {

    public static final Parcelable.Creator CREATOR = new Parcelable.Creator() {
        @Override
        public Service createFromParcel(Parcel in) {
            return new Service(in);

From source file com.codebutler.farebot.transit.Trip.java

public abstract class Trip implements Parcelable {
    public abstract long getTimestamp();

    public abstract long getExitTimestamp();

    public abstract String getRouteName();

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

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

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

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

    //
    // Fields
    //

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

public class Place extends JsonModel implements Parcelable {

    @JsonProperty(PLACE_ID)
    private String placeId;

    @JsonProperty(NAME)