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.vk.sdkweb.api.model.VKApiAudio.java

/**
 * An audio object describes an audio file and contains the following fields.
 */
@SuppressWarnings("unused")
public class VKApiAudio extends VKApiAttachment implements Identifiable, android.os.Parcelable {

From source file br.ufrj.ppgi.jemf.mobile.bean.Location.java

/**
 * @author Marcus Machado
 *
 */
public class Location extends AbstractLocation implements Parcelable, Comparable<Location> {

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

public class SodaDescriptor implements Parcelable {
    public static final int KIND_INSTANCE = 0;
    public static final int KIND_STATIC = 1;
    public static final int KIND_CTOR = 2;

    public final int kind;

From source file cn.edu.wyu.documentviewer.model.DocumentInfo.java

/**
 * Representation of a {@link Document}.
 */
public class DocumentInfo implements Durable, Parcelable {
    private static final int VERSION_INIT = 1;
    private static final int VERSION_SPLIT_URI = 2;

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

public class QMDescriptor implements Parcelable {
    public static final int KIND_INSTANCE = 0;
    public static final int KIND_STATIC = 1;
    public static final int KIND_CTOR = 2;

    public final int kind;

From source file com.putlocker.upload.concurrency.PutlockerDownloadJob.java

public class PutlockerDownloadJob extends PutlockerUpDownloadJob implements Parcelable {
    public String _fileName = "";
    public Long _fileSize = 0l;
    public String url = "";
    private String _fileLocation;
    private String _originalFileLocation;

From source file ru.rzn.myasoedov.vktest.dto.VKChat.java

/**
 * Chat object describes a user's chat.
 */
@SuppressWarnings("unused")
public class VKChat extends VKApiChat implements Parcelable {
    protected String preview;

From source file fr.free.nrw.commons.Media.java

public class Media implements Parcelable {

    public static Creator<Media> CREATOR = new Creator<Media>() {
        @Override
        public Media createFromParcel(Parcel parcel) {
            return new Media(parcel);

From source file org.jorge.lolin1.func.champs.models.Champion.java

public final class Champion implements Parcelable {

    private String key, name, title, attackrange, mpperlevel, mp, attackdamage, hp, hpperlevel,
            attackdamageperlevel, armor, mpregenperlevel, hpregen, critperlevel, spellblockperlevel, mpregen,
            attackspeedperlevel, spellblock, movespeed, attackspeedoffset, crit, hpregenperlevel, armorperlevel,
            lore, imageName;

From source file com.philliphsu.clock2.alarms.Alarm.java

/**
 * Created by Phillip Hsu on 5/26/2016.
 */
@AutoValue
public abstract class Alarm extends ObjectWithId implements Parcelable {
    private static final int MAX_MINUTES_CAN_SNOOZE = 30;