Merge "update docs per API council" into oc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
e28cccab24
@@ -17,6 +17,7 @@ package android.content.pm;
|
||||
|
||||
import android.annotation.NonNull;
|
||||
import android.annotation.Nullable;
|
||||
import android.annotation.TestApi;
|
||||
import android.content.Intent;
|
||||
import android.os.Parcel;
|
||||
import android.os.Parcelable;
|
||||
@@ -26,6 +27,7 @@ import java.util.List;
|
||||
/**
|
||||
* Packages that have been changed since the last time they
|
||||
* were requested.
|
||||
* @see PackageManager#getChangedPackages(int)
|
||||
*/
|
||||
public final class ChangedPackages implements Parcelable {
|
||||
/** The last known sequence number for these changes */
|
||||
@@ -33,6 +35,7 @@ public final class ChangedPackages implements Parcelable {
|
||||
/** The names of the packages that have changed */
|
||||
private final List<String> mPackageNames;
|
||||
|
||||
@TestApi
|
||||
public ChangedPackages(int sequenceNumber, @NonNull List<String> packageNames) {
|
||||
this.mSequenceNumber = sequenceNumber;
|
||||
this.mPackageNames = packageNames;
|
||||
|
||||
Reference in New Issue
Block a user