blob: e1656d6f192d6e63f3bb0d3bde9d5c70a97b4767 [file] [log] [blame]
/*
* Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.content.pm;
import android.os.Parcel;
import android.os.Parcelable;
/** @hide */
public class PackageCleanItem implements Parcelable {
public final int userId;
public final String packageName;
public final boolean andCode;
public PackageCleanItem(int userId, String packageName, boolean andCode) {
this.userId = userId;
this.packageName = packageName;
this.andCode = andCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
try {
if (obj != null) {
PackageCleanItem other = (PackageCleanItem)obj;
return userId == other.userId && packageName.equals(other.packageName)
&& andCode == other.andCode;
}
} catch (ClassCastException e) {
}
return false;
}
@Override
public int hashCode() {
int result = 17;
result = 31 * result + userId;
result = 31 * result + packageName.hashCode();
result = 31 * result + (andCode ? 1 : 0);
return result;
}
public int describeContents() {
return 0;
}
public void writeToParcel(Parcel dest, int parcelableFlags) {
dest.writeInt(userId);
dest.writeString(packageName);
dest.writeInt(andCode ? 1 : 0);
}
public static final Parcelable.Creator<PackageCleanItem> CREATOR
= new Parcelable.Creator<PackageCleanItem>() {
public PackageCleanItem createFromParcel(Parcel source) {
return new PackageCleanItem(source);
}
public PackageCleanItem[] newArray(int size) {
return new PackageCleanItem[size];
}
};
private PackageCleanItem(Parcel source) {
userId = source.readInt();
packageName = source.readString();
andCode = source.readInt() != 0;
}
}