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.database.models.SubjectTaskService.java

public SubjectTaskService(Parcel source) {
    key = source.readString();
    timestamp = source.readLong();
    timestampEdited = source.readLong();
}

From source file:com.ninetwozero.battlelog.datatypes.ShareableCookie.java

public ShareableCookie(Parcel in) {

    this.name = in.readString();
    this.value = in.readString();
    this.domain = in.readString();

}

From source file:com.clover.sdk.v1.customer.Order.java

Order(Parcel in) throws JSONException {
    String json = in.readString();
    this.data = new JSONObject(json);
}

From source file:ir.aarani.bazaar.billing.TransactionDetails.java

protected TransactionDetails(Parcel in) {
    this.productId = in.readString();
    this.orderId = in.readString();
    this.purchaseToken = in.readString();
    long tmpPurchaseTime = in.readLong();
    this.purchaseTime = tmpPurchaseTime == -1 ? null : new Date(tmpPurchaseTime);
    this.purchaseInfo = in.readParcelable(PurchaseInfo.class.getClassLoader());
}

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

public Timetable(Parcel source) {
    key = source.readString();
    name = source.readString();/*from  w  w w  .ja  va  2  s . c o  m*/
    privateKey = source.readString();
    publicAddress = source.readString();
    isCopy = source.readInt() != 0;
}

From source file:net.sourcewalker.garanbot.api.BarcodeResult.java

public BarcodeResult(final Parcel source) {
    name = source.readString();
    manufacturer = source.readString();
    type = source.readString();
}

From source file:com.nestlabs.sdk.NestToken.java

private NestToken(Parcel in) {
    mToken = in.readString();
    mExpiresInSecs = in.readLong();
}

From source file:com.artemchep.horario.database.models.User.java

public User(Parcel source) {
    key = source.readString();
    info = source.readString();
    name = source.readString();
    email = source.readString();
    avatarUrl = source.readString();
}

From source file:com.artemchep.horario.database.models.Absence.java

public Absence(Parcel source) {
    key = source.readString();
    subject = source.readString();
    reason = source.readString();
    date = source.readInt();
    time = source.readInt();
}

From source file:com.artemchep.horario.database.models.SubjectGroup.java

public SubjectGroup(Parcel source) {
    key = source.readString();
    name = source.readString();//  w  w  w .  j ava 2  s  .c  o  m
    users = new ArrayList<>();
    source.readStringList(users);
}