Example usage for android.os Parcel readString

List of usage examples for android.os Parcel readString

Introduction

In this page you can find the example usage for android.os Parcel readString.

Prototype

public final String readString() 

Source Link

Document

Read a string value from the parcel at the current dataPosition().

Usage

From source file:com.artemchep.horario.models.SubjectStudent.java

public SubjectStudent(Parcel source) {
    key = source.readString();
    title = source.readString();//w  ww  .ja  va 2  s .  c  o m
    description = source.readString();
    descriptionHtml = source.readString();
    author = source.readString();
    type = source.readInt();
    due = source.readLong();
    timestamp = source.readLong();
    isEdited = source.readInt() != 0;
}

From source file:com.artemchep.horario.models.SubjectTask.java

public SubjectTask(Parcel source) {
    key = source.readString();
    title = source.readString();/*from w w  w  .  ja va  2  s  .  co m*/
    description = source.readString();
    descriptionHtml = source.readString();
    author = source.readString();
    type = source.readInt();
    due = source.readLong();
    timestamp = source.readLong();
    isEdited = source.readInt() != 0;
}

From source file:com.gmail.taneza.ronald.carbs.common.FoodItem.java

private FoodItem(Parcel parcel) {
    mTableName = parcel.readString();
    mId = parcel.readInt();
    mQuantity = parcel.readInt();
    mTimeAddedMsec = parcel.readLong();
}

From source file:com.liferay.alerts.model.User.java

private User(Parcel parcel) {
    _id = parcel.readLong();
    _uuid = parcel.readString();
    _fullName = parcel.readString();
    _portraitId = parcel.readLong();
}

From source file:com.nestapi.lib.API.SmokeCOAlarm.java

private SmokeCOAlarm(Parcel in) {
    super(in);/*from  ww  w . j  av  a  2s.  com*/
    mBatteryHealth = in.readString();
    mCOAlarmState = in.readString();
    mSmokeAlarmState = in.readString();
    mUIColorState = in.readString();
}

From source file:com.vk.sdk.api.model.VKApiLink.java

/**
 * Creates a Link instance from Parcel./*w  w  w  . j  a va2s .c om*/
 */
private VKApiLink(Parcel in) {
    this.url = in.readString();
    this.title = in.readString();
    this.description = in.readString();
    this.image_src = in.readString();
    this.preview_page = in.readString();
}

From source file:com.tigerpenguin.places.model.Photo.java

public Photo(Parcel in) {
    photoReference = in.readString();
    height = in.readInt();/*w  w w  .  j  a  va  2s. c o  m*/
    width = in.readInt();
    htmlAttributions = new ArrayList<String>();
    in.readStringList(htmlAttributions);
}

From source file:jp.alessandro.android.iab.Purchase.java

protected Purchase(Parcel in) {
    mOriginalJson = in.readString();
    mOrderId = in.readString();/*from  ww w.jav  a 2 s  . c  o m*/
    mPackageName = in.readString();
    mSku = in.readString();
    mPurchaseTime = in.readLong();
    mPurchaseState = in.readInt();
    mDeveloperPayload = in.readString();
    mToken = in.readString();
    mAutoRenewing = in.readByte() != 0;
    mSignature = in.readString();
}

From source file:com.aokyu.dev.pocket.content.Image.java

private Image(Parcel in) {
    super(in.readString());
    setId(in.readLong());//from w ww .  j ava 2s  .  co  m
    setSource(in.readString());
    setWidth(in.readInt());
    setHeight(in.readInt());
    mCredit = in.readString();
    mCaption = in.readString();
}

From source file:com.aokyu.dev.pocket.content.Video.java

private Video(Parcel in) {
    super(in.readString());
    setId(in.readLong());/*  w w  w  . j a  v  a2  s.c  om*/
    setSource(in.readString());
    setWidth(in.readInt());
    setHeight(in.readInt());
    mType = in.readString();
    mVid = in.readString();
}