Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
package com.google.android.gms.common.moduleinstall;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.Parcelable;
|
||||
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
|
||||
import com.google.android.gms.common.internal.safeparcel.SafeParcelWriter;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class ModuleInstallResponse extends AbstractSafeParcelable {
|
||||
public static final Parcelable.Creator<ModuleInstallResponse> CREATOR = new zad();
|
||||
private final int zaa;
|
||||
private final boolean zab;
|
||||
|
||||
public ModuleInstallResponse(int i) {
|
||||
this(i, false);
|
||||
}
|
||||
|
||||
public boolean areModulesAlreadyInstalled() {
|
||||
return this.zaa == 0;
|
||||
}
|
||||
|
||||
public int getSessionId() {
|
||||
return this.zaa;
|
||||
}
|
||||
|
||||
@Override // android.os.Parcelable
|
||||
public void writeToParcel(Parcel parcel, int i) {
|
||||
int iBeginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
|
||||
SafeParcelWriter.writeInt(parcel, 1, getSessionId());
|
||||
SafeParcelWriter.writeBoolean(parcel, 2, this.zab);
|
||||
SafeParcelWriter.finishObjectHeader(parcel, iBeginObjectHeader);
|
||||
}
|
||||
|
||||
public final boolean zaa() {
|
||||
return this.zab;
|
||||
}
|
||||
|
||||
public ModuleInstallResponse(int i, boolean z) {
|
||||
this.zaa = i;
|
||||
this.zab = z;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user