List of usage examples for android.os Parcel writeString
public final void writeString(String val)
From source file:com.owncloud.android.ui.helpers.FilesUploadHelper.java
@Override public void writeToParcel(Parcel dest, int flags) { dest.writeString(this.capturedPhotoPath); dest.writeSerializable(this.image); }
From source file:com.smoothsync.smoothsetup.microfragments.ProvidersLoadMicroFragment.java
@Override public void writeToParcel(Parcel dest, int flags) { dest.writeString(mAccount.value(null)); dest.writeParcelable(mNext.boxed(), flags); }
From source file:id.satusatudua.sigap.data.model.ImportantContact.java
@Override public void writeToParcel(Parcel dest, int flags) { dest.writeString(contactId); dest.writeString(name);//from w ww. j ava 2 s .com dest.writeString(phoneNumber); dest.writeString(userId); dest.writeString(address); dest.writeLong(createdAt.getTime()); dest.writeDouble(avgRate); dest.writeDouble(totalRate); dest.writeLong(totalUserRate); dest.writeInt(myRate); dest.writeByte((byte) (bookmarked ? 1 : 0)); dest.writeParcelable(user, flags); }
From source file:com.v2soft.dnremote.dao.Server.java
@Override public void writeToParcel(Parcel dest, int flags) { dest.writeString(mId.toString()); dest.writeString(mName);/*ww w . j ava 2 s . c om*/ dest.writeString(mServer); dest.writeInt(mPort); dest.writeByte((byte) (mRelative ? 1 : 0)); if (mIPAddr != null) { dest.writeInt(mIPAddr.length); dest.writeByteArray(mIPAddr); } else { dest.writeInt(0); } }
From source file:org.onepf.opfmaps.osmdroid.model.BitmapDescriptor.java
@Override public void writeToParcel(final Parcel dest, final int flags) { dest.writeString(source.name()); dest.writeParcelable(image, flags);/*from ww w .jav a 2 s. c o m*/ dest.writeString(path); dest.writeFloat(hue); dest.writeInt(resourceId); }
From source file:org.opendatakit.common.android.data.RawRow.java
@Override public void writeToParcel(Parcel out, int flags) { out.writeString(mRowId); if (mRowData == null) { out.writeInt(0);/*from w ww. j a v a 2s.c om*/ String[] emptyString = {}; out.writeStringArray(emptyString); } else { out.writeInt(mRowData.length); out.writeStringArray(mRowData); } }
From source file:com.nestapi.lib.API.BaseDevice.java
@Override public void writeToParcel(Parcel dest, int flags) { dest.writeString(mDeviceID); dest.writeString(mLocale);/*from w w w. j av a 2 s . c o m*/ dest.writeString(mSoftwareVersion); dest.writeString(mStructureID); dest.writeString(mName); dest.writeString(mNameLong); dest.writeString(mLastConnection); ParcelUtils.writeBoolean(dest, mIsOnline); }
From source file:com.nestlabs.sdk.Device.java
@Override public void writeToParcel(Parcel dest, int flags) { dest.writeString(mDeviceId); dest.writeString(mLocale);/*w w w. j av a 2 s .co m*/ dest.writeString(mSoftwareVersion); dest.writeString(mStructureId); dest.writeString(mName); dest.writeString(mNameLong); dest.writeString(mLastConnection); Utils.writeBoolean(dest, mIsOnline); dest.writeString(mWhereId); }
From source file:com.vk.sdk.api.model.VKApiNote.java
@Override public void writeToParcel(Parcel dest, int flags) { dest.writeInt(this.id); dest.writeInt(this.user_id); dest.writeString(this.title); dest.writeString(this.text); dest.writeLong(this.date); dest.writeInt(this.comments); dest.writeInt(this.read_comments); }
From source file:com.markupartist.sthlmtraveling.data.models.Route.java
@Override public void writeToParcel(Parcel dest, int flags) { dest.writeInt(duration);// ww w . j a v a2 s.c om dest.writeTypedList(legs); dest.writeString(mode); dest.writeParcelable(fare, flags); }