resolve merge conflicts of d2f906a6ad to pi-dev-plus-aosp

Merged-In: Ia248aece5250e84e47c815c601133b698bf644c2
Change-Id: Ib1268a96fa633af3f64057e7ced7e4a2fde27da6
This commit is contained in:
Tor Norbye
2019-01-20 19:31:04 -08:00
66 changed files with 26792 additions and 26969 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,31 +1,32 @@
// Signature format: 2.0
package android.app {
public class Activity extends android.view.ContextThemeWrapper implements android.content.ComponentCallbacks2 android.view.KeyEvent.Callback android.view.LayoutInflater.Factory2 android.view.View.OnCreateContextMenuListener android.view.Window.Callback {
method public deprecated boolean enterPictureInPictureMode(android.app.PictureInPictureArgs);
method public deprecated void setPictureInPictureArgs(android.app.PictureInPictureArgs);
method @Deprecated public boolean enterPictureInPictureMode(@NonNull android.app.PictureInPictureArgs);
method @Deprecated public void setPictureInPictureArgs(@NonNull android.app.PictureInPictureArgs);
}
public class ActivityManager {
method public static deprecated int getMaxNumPictureInPictureActions();
method @Deprecated public static int getMaxNumPictureInPictureActions();
}
public class KeyguardManager {
method public deprecated void dismissKeyguard(android.app.Activity, android.app.KeyguardManager.KeyguardDismissCallback, android.os.Handler);
method @Deprecated public void dismissKeyguard(@NonNull android.app.Activity, @Nullable android.app.KeyguardManager.KeyguardDismissCallback, @Nullable android.os.Handler);
}
public class Notification implements android.os.Parcelable {
method public deprecated java.lang.String getChannel();
method public static java.lang.Class<? extends android.app.Notification.Style> getNotificationStyleClass(java.lang.String);
method public deprecated long getTimeout();
method public deprecated void setLatestEventInfo(android.content.Context, java.lang.CharSequence, java.lang.CharSequence, android.app.PendingIntent);
method @Deprecated public String getChannel();
method public static Class<? extends android.app.Notification.Style> getNotificationStyleClass(String);
method @Deprecated public long getTimeout();
method @Deprecated public void setLatestEventInfo(android.content.Context, CharSequence, CharSequence, android.app.PendingIntent);
}
public static class Notification.Builder {
method public deprecated android.app.Notification.Builder setChannel(java.lang.String);
method public deprecated android.app.Notification.Builder setTimeout(long);
method @Deprecated public android.app.Notification.Builder setChannel(String);
method @Deprecated public android.app.Notification.Builder setTimeout(long);
}
public final deprecated class PictureInPictureArgs implements android.os.Parcelable {
@Deprecated public final class PictureInPictureArgs implements android.os.Parcelable {
method public static android.app.PictureInPictureArgs convert(android.app.PictureInPictureParams);
method public static android.app.PictureInPictureParams convert(android.app.PictureInPictureArgs);
method public int describeContents();
@@ -48,8 +49,8 @@ package android.app {
package android.app.admin {
public class DevicePolicyManager {
method public deprecated android.os.UserHandle createAndInitializeUser(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle);
method public deprecated android.os.UserHandle createUser(android.content.ComponentName, java.lang.String);
method @Deprecated @Nullable public android.os.UserHandle createAndInitializeUser(@NonNull android.content.ComponentName, String, String, @NonNull android.content.ComponentName, android.os.Bundle);
method @Deprecated @Nullable public android.os.UserHandle createUser(@NonNull android.content.ComponentName, String);
}
}
@@ -57,17 +58,17 @@ package android.app.admin {
package android.app.job {
public class JobInfo implements android.os.Parcelable {
method public deprecated long getEstimatedNetworkBytes();
method @Deprecated public long getEstimatedNetworkBytes();
}
public static final class JobInfo.Builder {
method public deprecated android.app.job.JobInfo.Builder setEstimatedNetworkBytes(long);
method public deprecated android.app.job.JobInfo.Builder setIsPrefetch(boolean);
method @Deprecated public android.app.job.JobInfo.Builder setEstimatedNetworkBytes(long);
method @Deprecated public android.app.job.JobInfo.Builder setIsPrefetch(boolean);
}
public final class JobWorkItem implements android.os.Parcelable {
ctor public deprecated JobWorkItem(android.content.Intent, long);
method public deprecated long getEstimatedNetworkBytes();
ctor @Deprecated public JobWorkItem(android.content.Intent, long);
method @Deprecated public long getEstimatedNetworkBytes();
}
}
@@ -75,29 +76,29 @@ package android.app.job {
package android.app.slice {
public final class Slice implements android.os.Parcelable {
field public static final deprecated java.lang.String EXTRA_SLIDER_VALUE = "android.app.slice.extra.SLIDER_VALUE";
field public static final deprecated java.lang.String SUBTYPE_SLIDER = "slider";
field @Deprecated public static final String EXTRA_SLIDER_VALUE = "android.app.slice.extra.SLIDER_VALUE";
field @Deprecated public static final String SUBTYPE_SLIDER = "slider";
}
public static class Slice.Builder {
ctor public deprecated Slice.Builder(android.net.Uri);
method public deprecated android.app.slice.Slice.Builder addTimestamp(long, java.lang.String, java.util.List<java.lang.String>);
method public deprecated android.app.slice.Slice.Builder setSpec(android.app.slice.SliceSpec);
ctor @Deprecated public Slice.Builder(@NonNull android.net.Uri);
method @Deprecated public android.app.slice.Slice.Builder addTimestamp(long, @Nullable String, java.util.List<java.lang.String>);
method @Deprecated public android.app.slice.Slice.Builder setSpec(android.app.slice.SliceSpec);
}
public final class SliceItem implements android.os.Parcelable {
method public deprecated long getTimestamp();
field public static final deprecated java.lang.String FORMAT_TIMESTAMP = "long";
method @Deprecated public long getTimestamp();
field @Deprecated public static final String FORMAT_TIMESTAMP = "long";
}
public class SliceManager {
method public deprecated android.app.slice.Slice bindSlice(android.net.Uri, java.util.List<android.app.slice.SliceSpec>);
method public deprecated android.app.slice.Slice bindSlice(android.content.Intent, java.util.List<android.app.slice.SliceSpec>);
method public deprecated void pinSlice(android.net.Uri, java.util.List<android.app.slice.SliceSpec>);
method @Deprecated @Nullable public android.app.slice.Slice bindSlice(@NonNull android.net.Uri, @NonNull java.util.List<android.app.slice.SliceSpec>);
method @Deprecated @Nullable public android.app.slice.Slice bindSlice(@NonNull android.content.Intent, @NonNull java.util.List<android.app.slice.SliceSpec>);
method @Deprecated public void pinSlice(@NonNull android.net.Uri, @NonNull java.util.List<android.app.slice.SliceSpec>);
}
public abstract class SliceProvider extends android.content.ContentProvider {
method public deprecated android.app.slice.Slice onBindSlice(android.net.Uri, java.util.List<android.app.slice.SliceSpec>);
method @Deprecated public android.app.slice.Slice onBindSlice(android.net.Uri, java.util.List<android.app.slice.SliceSpec>);
}
}
@@ -105,17 +106,17 @@ package android.app.slice {
package android.app.usage {
public final class StorageStats implements android.os.Parcelable {
method public deprecated long getCodeBytes();
method @Deprecated public long getCodeBytes();
}
public class StorageStatsManager {
method public deprecated long getFreeBytes(java.lang.String) throws java.io.IOException;
method public deprecated long getTotalBytes(java.lang.String) throws java.io.IOException;
method public deprecated boolean isQuotaSupported(java.lang.String);
method public deprecated android.app.usage.ExternalStorageStats queryExternalStatsForUser(java.lang.String, android.os.UserHandle) throws java.io.IOException;
method public deprecated android.app.usage.StorageStats queryStatsForPackage(java.lang.String, java.lang.String, android.os.UserHandle) throws java.io.IOException, android.content.pm.PackageManager.NameNotFoundException;
method public deprecated android.app.usage.StorageStats queryStatsForUid(java.lang.String, int) throws java.io.IOException;
method public deprecated android.app.usage.StorageStats queryStatsForUser(java.lang.String, android.os.UserHandle) throws java.io.IOException;
method @Deprecated public long getFreeBytes(String) throws java.io.IOException;
method @Deprecated public long getTotalBytes(String) throws java.io.IOException;
method @Deprecated public boolean isQuotaSupported(String);
method @Deprecated public android.app.usage.ExternalStorageStats queryExternalStatsForUser(String, android.os.UserHandle) throws java.io.IOException;
method @Deprecated public android.app.usage.StorageStats queryStatsForPackage(String, String, android.os.UserHandle) throws java.io.IOException, android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.app.usage.StorageStats queryStatsForUid(String, int) throws java.io.IOException;
method @Deprecated public android.app.usage.StorageStats queryStatsForUser(String, android.os.UserHandle) throws java.io.IOException;
}
}
@@ -123,21 +124,21 @@ package android.app.usage {
package android.content {
public class ClipData implements android.os.Parcelable {
method public deprecated void addItem(android.content.ClipData.Item, android.content.ContentResolver);
method @Deprecated public void addItem(android.content.ClipData.Item, android.content.ContentResolver);
}
public abstract class Context {
method public abstract android.content.SharedPreferences getSharedPreferences(java.io.File, int);
method public abstract java.io.File getSharedPreferencesPath(java.lang.String);
method public abstract java.io.File getSharedPreferencesPath(String);
}
public class ContextWrapper extends android.content.Context {
method public android.content.SharedPreferences getSharedPreferences(java.io.File, int);
method public java.io.File getSharedPreferencesPath(java.lang.String);
method public java.io.File getSharedPreferencesPath(String);
}
public class Intent implements java.lang.Cloneable android.os.Parcelable {
field public static final deprecated java.lang.String EXTRA_QUICK_VIEW_ADVANCED = "android.intent.extra.QUICK_VIEW_ADVANCED";
field @Deprecated public static final String EXTRA_QUICK_VIEW_ADVANCED = "android.intent.extra.QUICK_VIEW_ADVANCED";
}
}
@@ -145,11 +146,11 @@ package android.content {
package android.content.pm {
public class ApplicationInfo extends android.content.pm.PackageItemInfo implements android.os.Parcelable {
field public deprecated java.lang.String volumeUuid;
field @Deprecated public String volumeUuid;
}
public class ComponentInfo extends android.content.pm.PackageItemInfo {
field public deprecated boolean encryptionAware;
field @Deprecated public boolean encryptionAware;
}
public class PackageInfo implements android.os.Parcelable {
@@ -157,11 +158,11 @@ package android.content.pm {
}
public abstract class PackageManager {
method public abstract boolean setInstantAppCookie(byte[]);
method public abstract boolean setInstantAppCookie(@Nullable byte[]);
}
public class ResolveInfo implements android.os.Parcelable {
field public deprecated boolean instantAppAvailable;
field @Deprecated public boolean instantAppAvailable;
}
public final class SharedLibraryInfo implements android.os.Parcelable {
@@ -175,71 +176,69 @@ package android.content.pm {
package android.database {
public abstract class AbstractCursor implements android.database.CrossProcessCursor {
field protected java.lang.Long mCurrentRowID;
field protected Long mCurrentRowID;
field protected int mRowIdColumnIndex;
field protected java.util.HashMap<java.lang.Long, java.util.Map<java.lang.String, java.lang.Object>> mUpdatedRows;
field protected java.util.HashMap<java.lang.Long,java.util.Map<java.lang.String,java.lang.Object>> mUpdatedRows;
}
}
package android.graphics {
public deprecated class AvoidXfermode extends android.graphics.Xfermode {
@Deprecated public class AvoidXfermode extends android.graphics.Xfermode {
ctor public AvoidXfermode(int, int, android.graphics.AvoidXfermode.Mode);
}
public static final class AvoidXfermode.Mode extends java.lang.Enum {
method public static android.graphics.AvoidXfermode.Mode valueOf(java.lang.String);
method public static final android.graphics.AvoidXfermode.Mode[] values();
public enum AvoidXfermode.Mode {
enum_constant public static final android.graphics.AvoidXfermode.Mode AVOID;
enum_constant public static final android.graphics.AvoidXfermode.Mode TARGET;
}
public class Canvas {
method public deprecated boolean clipRegion(android.graphics.Region, android.graphics.Region.Op);
method public deprecated boolean clipRegion(android.graphics.Region);
method public deprecated int save(int);
field public static final deprecated int CLIP_SAVE_FLAG = 2; // 0x2
field public static final deprecated int CLIP_TO_LAYER_SAVE_FLAG = 16; // 0x10
field public static final deprecated int FULL_COLOR_LAYER_SAVE_FLAG = 8; // 0x8
field public static final deprecated int HAS_ALPHA_LAYER_SAVE_FLAG = 4; // 0x4
field public static final deprecated int MATRIX_SAVE_FLAG = 1; // 0x1
method @Deprecated public boolean clipRegion(@NonNull android.graphics.Region, @NonNull android.graphics.Region.Op);
method @Deprecated public boolean clipRegion(@NonNull android.graphics.Region);
method @Deprecated public int save(int);
field @Deprecated public static final int CLIP_SAVE_FLAG = 2; // 0x2
field @Deprecated public static final int CLIP_TO_LAYER_SAVE_FLAG = 16; // 0x10
field @Deprecated public static final int FULL_COLOR_LAYER_SAVE_FLAG = 8; // 0x8
field @Deprecated public static final int HAS_ALPHA_LAYER_SAVE_FLAG = 4; // 0x4
field @Deprecated public static final int MATRIX_SAVE_FLAG = 1; // 0x1
}
public final class ImageDecoder implements java.lang.AutoCloseable {
method public deprecated boolean getAsAlphaMask();
method public deprecated boolean getConserveMemory();
method public deprecated boolean getDecodeAsAlphaMask();
method public deprecated boolean getMutable();
method public deprecated boolean getRequireUnpremultiplied();
method public deprecated android.graphics.ImageDecoder setAsAlphaMask(boolean);
method public deprecated void setConserveMemory(boolean);
method public deprecated android.graphics.ImageDecoder setDecodeAsAlphaMask(boolean);
method public deprecated android.graphics.ImageDecoder setMutable(boolean);
method public deprecated android.graphics.ImageDecoder setRequireUnpremultiplied(boolean);
method public deprecated android.graphics.ImageDecoder setResize(int, int);
method public deprecated android.graphics.ImageDecoder setResize(int);
field public static final deprecated int ERROR_SOURCE_ERROR = 3; // 0x3
field public static final deprecated int ERROR_SOURCE_EXCEPTION = 1; // 0x1
field public static final deprecated int ERROR_SOURCE_INCOMPLETE = 2; // 0x2
method @Deprecated public boolean getAsAlphaMask();
method @Deprecated public boolean getConserveMemory();
method @Deprecated public boolean getDecodeAsAlphaMask();
method @Deprecated public boolean getMutable();
method @Deprecated public boolean getRequireUnpremultiplied();
method @Deprecated public android.graphics.ImageDecoder setAsAlphaMask(boolean);
method @Deprecated public void setConserveMemory(boolean);
method @Deprecated public android.graphics.ImageDecoder setDecodeAsAlphaMask(boolean);
method @Deprecated public android.graphics.ImageDecoder setMutable(boolean);
method @Deprecated public android.graphics.ImageDecoder setRequireUnpremultiplied(boolean);
method @Deprecated public android.graphics.ImageDecoder setResize(int, int);
method @Deprecated public android.graphics.ImageDecoder setResize(int);
field @Deprecated public static final int ERROR_SOURCE_ERROR = 3; // 0x3
field @Deprecated public static final int ERROR_SOURCE_EXCEPTION = 1; // 0x1
field @Deprecated public static final int ERROR_SOURCE_INCOMPLETE = 2; // 0x2
}
public static deprecated class ImageDecoder.IncompleteException extends java.io.IOException {
@Deprecated public static class ImageDecoder.IncompleteException extends java.io.IOException {
ctor public ImageDecoder.IncompleteException();
}
public deprecated class LayerRasterizer extends android.graphics.Rasterizer {
@Deprecated public class LayerRasterizer extends android.graphics.Rasterizer {
ctor public LayerRasterizer();
method public void addLayer(android.graphics.Paint, float, float);
method public void addLayer(android.graphics.Paint);
}
public class Paint {
method public deprecated android.graphics.Rasterizer getRasterizer();
method public deprecated android.graphics.Rasterizer setRasterizer(android.graphics.Rasterizer);
method @Deprecated public android.graphics.Rasterizer getRasterizer();
method @Deprecated public android.graphics.Rasterizer setRasterizer(android.graphics.Rasterizer);
}
public deprecated class PixelXorXfermode extends android.graphics.Xfermode {
@Deprecated public class PixelXorXfermode extends android.graphics.Xfermode {
ctor public PixelXorXfermode(int);
}
@@ -252,9 +251,9 @@ package android.graphics {
package android.graphics.drawable {
public class AnimatedImageDrawable extends android.graphics.drawable.Drawable implements android.graphics.drawable.Animatable2 {
method public deprecated int getLoopCount(int);
method public deprecated void setLoopCount(int);
field public static final deprecated int LOOP_INFINITE = -1; // 0xffffffff
method @Deprecated public int getLoopCount(int);
method @Deprecated public void setLoopCount(int);
field @Deprecated public static final int LOOP_INFINITE = -1; // 0xffffffff
}
}
@@ -262,16 +261,16 @@ package android.graphics.drawable {
package android.hardware {
public final class HardwareBuffer implements java.lang.AutoCloseable android.os.Parcelable {
method public deprecated void destroy();
method public deprecated boolean isDestroyed();
method @Deprecated public void destroy();
method @Deprecated public boolean isDestroyed();
}
public final class SensorDirectChannel implements java.nio.channels.Channel {
method public deprecated boolean isValid();
method @Deprecated public boolean isValid();
}
public abstract class SensorManager {
method public deprecated int configureDirectChannel(android.hardware.SensorDirectChannel, android.hardware.Sensor, int);
method @Deprecated public int configureDirectChannel(android.hardware.SensorDirectChannel, android.hardware.Sensor, int);
}
}
@@ -279,9 +278,9 @@ package android.hardware {
package android.location {
public class Location implements android.os.Parcelable {
method public deprecated void removeBearingAccuracy();
method public deprecated void removeSpeedAccuracy();
method public deprecated void removeVerticalAccuracy();
method @Deprecated public void removeBearingAccuracy();
method @Deprecated public void removeSpeedAccuracy();
method @Deprecated public void removeVerticalAccuracy();
}
}
@@ -305,28 +304,28 @@ package android.media.tv {
package android.net {
public class ConnectivityManager {
method public deprecated boolean requestRouteToHost(int, int);
method public deprecated int startUsingNetworkFeature(int, java.lang.String);
method public deprecated int stopUsingNetworkFeature(int, java.lang.String);
method @Deprecated public boolean requestRouteToHost(int, int);
method @Deprecated public int startUsingNetworkFeature(int, String);
method @Deprecated public int stopUsingNetworkFeature(int, String);
}
public deprecated class NetworkBadging {
method public static android.graphics.drawable.Drawable getWifiIcon(int, int, android.content.res.Resources.Theme);
@Deprecated public class NetworkBadging {
method @NonNull public static android.graphics.drawable.Drawable getWifiIcon(@IntRange(from=0, to=4) int, int, @Nullable android.content.res.Resources.Theme);
field public static final int BADGING_4K = 30; // 0x1e
field public static final int BADGING_HD = 20; // 0x14
field public static final int BADGING_NONE = 0; // 0x0
field public static final int BADGING_SD = 10; // 0xa
}
public static abstract class NetworkBadging.Badging implements java.lang.annotation.Annotation {
@IntDef({0x0, 0xa, 0x14, 0x1e}) @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.SOURCE) public static @interface NetworkBadging.Badging {
}
public class SSLCertificateSocketFactory extends javax.net.ssl.SSLSocketFactory {
method public static deprecated org.apache.http.conn.ssl.SSLSocketFactory getHttpSocketFactory(int, android.net.SSLSessionCache);
method @Deprecated public static org.apache.http.conn.ssl.SSLSocketFactory getHttpSocketFactory(int, android.net.SSLSessionCache);
}
public class TrafficStats {
method public static deprecated void setThreadStatsUidSelf();
method @Deprecated public static void setThreadStatsUidSelf();
}
}
@@ -339,7 +338,7 @@ package android.os {
public final class PowerManager {
method public void goToSleep(long);
method public deprecated void userActivity(long, boolean);
method @Deprecated public void userActivity(long, boolean);
method public void wakeUp(long);
}
@@ -348,27 +347,27 @@ package android.os {
}
public static final class StrictMode.ThreadPolicy.Builder {
method public android.os.StrictMode.ThreadPolicy.Builder penaltyListener(android.os.StrictMode.OnThreadViolationListener, java.util.concurrent.Executor);
method public android.os.StrictMode.ThreadPolicy.Builder penaltyListener(@NonNull android.os.StrictMode.OnThreadViolationListener, @NonNull java.util.concurrent.Executor);
}
public static final class StrictMode.VmPolicy.Builder {
method public android.os.StrictMode.VmPolicy.Builder penaltyListener(android.os.StrictMode.OnVmViolationListener, java.util.concurrent.Executor);
method public android.os.StrictMode.VmPolicy.Builder penaltyListener(@NonNull android.os.StrictMode.OnVmViolationListener, @NonNull java.util.concurrent.Executor);
}
public final class SystemClock {
method public static java.time.Clock elapsedRealtimeClock();
method public static java.time.Clock uptimeClock();
method public static deprecated java.time.Clock uptimeMillisClock();
method @NonNull public static java.time.Clock elapsedRealtimeClock();
method @NonNull public static java.time.Clock uptimeClock();
method @Deprecated @NonNull public static java.time.Clock uptimeMillisClock();
}
public class TestLooperManager {
method public deprecated android.os.MessageQueue getQueue();
method @Deprecated public android.os.MessageQueue getQueue();
}
public class UserManager {
method public android.graphics.drawable.Drawable getBadgedDrawableForUser(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int);
method public android.graphics.drawable.Drawable getBadgedIconForUser(android.graphics.drawable.Drawable, android.os.UserHandle);
method public java.lang.CharSequence getBadgedLabelForUser(java.lang.CharSequence, android.os.UserHandle);
method public CharSequence getBadgedLabelForUser(CharSequence, android.os.UserHandle);
}
}
@@ -376,8 +375,8 @@ package android.os {
package android.os.storage {
public class StorageManager {
method public android.os.storage.StorageVolume getPrimaryVolume();
method public android.os.storage.StorageVolume[] getVolumeList();
method @NonNull public android.os.storage.StorageVolume getPrimaryVolume();
method @NonNull public android.os.storage.StorageVolume[] getVolumeList();
}
}
@@ -385,20 +384,20 @@ package android.os.storage {
package android.provider {
public class Browser {
method public static final void addSearchUrl(android.content.ContentResolver, java.lang.String);
method public static final boolean canClearHistory(android.content.ContentResolver);
method public static final void clearHistory(android.content.ContentResolver);
method public static final void clearSearches(android.content.ContentResolver);
method public static final void deleteFromHistory(android.content.ContentResolver, java.lang.String);
method public static final void deleteHistoryTimeFrame(android.content.ContentResolver, long, long);
method public static final android.database.Cursor getAllBookmarks(android.content.ContentResolver) throws java.lang.IllegalStateException;
method public static final android.database.Cursor getAllVisitedUrls(android.content.ContentResolver) throws java.lang.IllegalStateException;
method public static final void requestAllIcons(android.content.ContentResolver, java.lang.String, android.webkit.WebIconDatabase.IconListener);
method public static final void saveBookmark(android.content.Context, java.lang.String, java.lang.String);
method public static final void truncateHistory(android.content.ContentResolver);
method public static final void updateVisitedHistory(android.content.ContentResolver, java.lang.String, boolean);
field public static final android.net.Uri BOOKMARKS_URI;
field public static final java.lang.String[] HISTORY_PROJECTION;
method @RequiresPermission(allOf={"com.android.browser.permission.READ_HISTORY_BOOKMARKS", "com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"}, apis="..22") public static final void addSearchUrl(android.content.ContentResolver, String);
method @RequiresPermission(value="com.android.browser.permission.READ_HISTORY_BOOKMARKS", apis="..22") public static final boolean canClearHistory(android.content.ContentResolver);
method @RequiresPermission(value="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS", apis="..22") public static final void clearHistory(android.content.ContentResolver);
method @RequiresPermission(value="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS", apis="..22") public static final void clearSearches(android.content.ContentResolver);
method @RequiresPermission(value="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS", apis="..22") public static final void deleteFromHistory(android.content.ContentResolver, String);
method @RequiresPermission(value="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS", apis="..22") public static final void deleteHistoryTimeFrame(android.content.ContentResolver, long, long);
method @RequiresPermission(value="com.android.browser.permission.READ_HISTORY_BOOKMARKS", apis="..22") public static final android.database.Cursor getAllBookmarks(android.content.ContentResolver) throws java.lang.IllegalStateException;
method @RequiresPermission(value="com.android.browser.permission.READ_HISTORY_BOOKMARKS", apis="..22") public static final android.database.Cursor getAllVisitedUrls(android.content.ContentResolver) throws java.lang.IllegalStateException;
method @RequiresPermission(value="com.android.browser.permission.READ_HISTORY_BOOKMARKS", apis="..22") public static final void requestAllIcons(android.content.ContentResolver, String, android.webkit.WebIconDatabase.IconListener);
method public static final void saveBookmark(android.content.Context, String, String);
method @RequiresPermission(allOf={"com.android.browser.permission.READ_HISTORY_BOOKMARKS", "com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"}, apis="..22") public static final void truncateHistory(android.content.ContentResolver);
method @RequiresPermission(allOf={"com.android.browser.permission.READ_HISTORY_BOOKMARKS", "com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"}, apis="..22") public static final void updateVisitedHistory(android.content.ContentResolver, String, boolean);
field @RequiresPermission.Read(value="com.android.browser.permission.READ_HISTORY_BOOKMARKS", apis="..22") @RequiresPermission.Write(value="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS", apis="..22") public static final android.net.Uri BOOKMARKS_URI;
field public static final String[] HISTORY_PROJECTION;
field public static final int HISTORY_PROJECTION_BOOKMARK_INDEX = 4; // 0x4
field public static final int HISTORY_PROJECTION_DATE_INDEX = 3; // 0x3
field public static final int HISTORY_PROJECTION_FAVICON_INDEX = 6; // 0x6
@@ -406,121 +405,121 @@ package android.provider {
field public static final int HISTORY_PROJECTION_TITLE_INDEX = 5; // 0x5
field public static final int HISTORY_PROJECTION_URL_INDEX = 1; // 0x1
field public static final int HISTORY_PROJECTION_VISITS_INDEX = 2; // 0x2
field public static final java.lang.String[] SEARCHES_PROJECTION;
field public static final String[] SEARCHES_PROJECTION;
field public static final int SEARCHES_PROJECTION_DATE_INDEX = 2; // 0x2
field public static final int SEARCHES_PROJECTION_SEARCH_INDEX = 1; // 0x1
field public static final android.net.Uri SEARCHES_URI;
field public static final java.lang.String[] TRUNCATE_HISTORY_PROJECTION;
field @RequiresPermission.Read(value="com.android.browser.permission.READ_HISTORY_BOOKMARKS", apis="..22") @RequiresPermission.Write(value="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS", apis="..22") public static final android.net.Uri SEARCHES_URI;
field public static final String[] TRUNCATE_HISTORY_PROJECTION;
field public static final int TRUNCATE_HISTORY_PROJECTION_ID_INDEX = 0; // 0x0
field public static final int TRUNCATE_N_OLDEST = 5; // 0x5
}
public static class Browser.BookmarkColumns implements android.provider.BaseColumns {
ctor public Browser.BookmarkColumns();
field public static final java.lang.String BOOKMARK = "bookmark";
field public static final java.lang.String CREATED = "created";
field public static final java.lang.String DATE = "date";
field public static final java.lang.String FAVICON = "favicon";
field public static final java.lang.String TITLE = "title";
field public static final java.lang.String URL = "url";
field public static final java.lang.String VISITS = "visits";
field public static final java.lang.String _COUNT = "_count";
field public static final java.lang.String _ID = "_id";
field public static final String BOOKMARK = "bookmark";
field public static final String CREATED = "created";
field public static final String DATE = "date";
field public static final String FAVICON = "favicon";
field public static final String TITLE = "title";
field public static final String URL = "url";
field public static final String VISITS = "visits";
field public static final String _COUNT = "_count";
field public static final String _ID = "_id";
}
public static class Browser.SearchColumns implements android.provider.BaseColumns {
ctor public Browser.SearchColumns();
field public static final java.lang.String DATE = "date";
field public static final java.lang.String SEARCH = "search";
field public static final deprecated java.lang.String URL = "url";
field public static final java.lang.String _COUNT = "_count";
field public static final java.lang.String _ID = "_id";
field public static final String DATE = "date";
field public static final String SEARCH = "search";
field @Deprecated public static final String URL = "url";
field public static final String _COUNT = "_count";
field public static final String _ID = "_id";
}
public static final deprecated class ContactsContract.Contacts.StreamItems implements android.provider.ContactsContract.StreamItemsColumns {
field public static final deprecated java.lang.String CONTENT_DIRECTORY = "stream_items";
@Deprecated public static final class ContactsContract.Contacts.StreamItems implements android.provider.ContactsContract.StreamItemsColumns {
field @Deprecated public static final String CONTENT_DIRECTORY = "stream_items";
}
public static final deprecated class ContactsContract.RawContacts.StreamItems implements android.provider.BaseColumns android.provider.ContactsContract.StreamItemsColumns {
field public static final deprecated java.lang.String CONTENT_DIRECTORY = "stream_items";
field public static final java.lang.String _COUNT = "_count";
field public static final java.lang.String _ID = "_id";
@Deprecated public static final class ContactsContract.RawContacts.StreamItems implements android.provider.BaseColumns android.provider.ContactsContract.StreamItemsColumns {
field @Deprecated public static final String CONTENT_DIRECTORY = "stream_items";
field public static final String _COUNT = "_count";
field public static final String _ID = "_id";
}
public static final deprecated class ContactsContract.StreamItemPhotos implements android.provider.BaseColumns android.provider.ContactsContract.StreamItemPhotosColumns {
field public static final deprecated java.lang.String PHOTO = "photo";
field public static final java.lang.String _COUNT = "_count";
field public static final java.lang.String _ID = "_id";
@Deprecated public static final class ContactsContract.StreamItemPhotos implements android.provider.BaseColumns android.provider.ContactsContract.StreamItemPhotosColumns {
field @Deprecated public static final String PHOTO = "photo";
field public static final String _COUNT = "_count";
field public static final String _ID = "_id";
}
protected static abstract deprecated interface ContactsContract.StreamItemPhotosColumns {
field public static final deprecated java.lang.String PHOTO_FILE_ID = "photo_file_id";
field public static final deprecated java.lang.String PHOTO_URI = "photo_uri";
field public static final deprecated java.lang.String SORT_INDEX = "sort_index";
field public static final deprecated java.lang.String STREAM_ITEM_ID = "stream_item_id";
field public static final deprecated java.lang.String SYNC1 = "stream_item_photo_sync1";
field public static final deprecated java.lang.String SYNC2 = "stream_item_photo_sync2";
field public static final deprecated java.lang.String SYNC3 = "stream_item_photo_sync3";
field public static final deprecated java.lang.String SYNC4 = "stream_item_photo_sync4";
@Deprecated protected static interface ContactsContract.StreamItemPhotosColumns {
field @Deprecated public static final String PHOTO_FILE_ID = "photo_file_id";
field @Deprecated public static final String PHOTO_URI = "photo_uri";
field @Deprecated public static final String SORT_INDEX = "sort_index";
field @Deprecated public static final String STREAM_ITEM_ID = "stream_item_id";
field @Deprecated public static final String SYNC1 = "stream_item_photo_sync1";
field @Deprecated public static final String SYNC2 = "stream_item_photo_sync2";
field @Deprecated public static final String SYNC3 = "stream_item_photo_sync3";
field @Deprecated public static final String SYNC4 = "stream_item_photo_sync4";
}
public static final deprecated class ContactsContract.StreamItems implements android.provider.BaseColumns android.provider.ContactsContract.StreamItemsColumns {
field public static final deprecated java.lang.String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/stream_item";
field public static final deprecated android.net.Uri CONTENT_LIMIT_URI;
field public static final deprecated android.net.Uri CONTENT_PHOTO_URI;
field public static final deprecated java.lang.String CONTENT_TYPE = "vnd.android.cursor.dir/stream_item";
field public static final deprecated android.net.Uri CONTENT_URI;
field public static final deprecated java.lang.String MAX_ITEMS = "max_items";
field public static final java.lang.String _COUNT = "_count";
field public static final java.lang.String _ID = "_id";
@Deprecated public static final class ContactsContract.StreamItems implements android.provider.BaseColumns android.provider.ContactsContract.StreamItemsColumns {
field @Deprecated public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/stream_item";
field @Deprecated public static final android.net.Uri CONTENT_LIMIT_URI;
field @Deprecated public static final android.net.Uri CONTENT_PHOTO_URI;
field @Deprecated public static final String CONTENT_TYPE = "vnd.android.cursor.dir/stream_item";
field @Deprecated public static final android.net.Uri CONTENT_URI;
field @Deprecated public static final String MAX_ITEMS = "max_items";
field public static final String _COUNT = "_count";
field public static final String _ID = "_id";
}
public static final deprecated class ContactsContract.StreamItems.StreamItemPhotos implements android.provider.BaseColumns android.provider.ContactsContract.StreamItemPhotosColumns {
field public static final deprecated java.lang.String CONTENT_DIRECTORY = "photo";
field public static final deprecated java.lang.String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/stream_item_photo";
field public static final deprecated java.lang.String CONTENT_TYPE = "vnd.android.cursor.dir/stream_item_photo";
field public static final java.lang.String _COUNT = "_count";
field public static final java.lang.String _ID = "_id";
@Deprecated public static final class ContactsContract.StreamItems.StreamItemPhotos implements android.provider.BaseColumns android.provider.ContactsContract.StreamItemPhotosColumns {
field @Deprecated public static final String CONTENT_DIRECTORY = "photo";
field @Deprecated public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/stream_item_photo";
field @Deprecated public static final String CONTENT_TYPE = "vnd.android.cursor.dir/stream_item_photo";
field public static final String _COUNT = "_count";
field public static final String _ID = "_id";
}
protected static abstract deprecated interface ContactsContract.StreamItemsColumns {
field public static final deprecated java.lang.String ACCOUNT_NAME = "account_name";
field public static final deprecated java.lang.String ACCOUNT_TYPE = "account_type";
field public static final deprecated java.lang.String COMMENTS = "comments";
field public static final deprecated java.lang.String CONTACT_ID = "contact_id";
field public static final deprecated java.lang.String CONTACT_LOOKUP_KEY = "contact_lookup";
field public static final deprecated java.lang.String DATA_SET = "data_set";
field public static final deprecated java.lang.String RAW_CONTACT_ID = "raw_contact_id";
field public static final deprecated java.lang.String RAW_CONTACT_SOURCE_ID = "raw_contact_source_id";
field public static final deprecated java.lang.String RES_ICON = "icon";
field public static final deprecated java.lang.String RES_LABEL = "label";
field public static final deprecated java.lang.String RES_PACKAGE = "res_package";
field public static final deprecated java.lang.String SYNC1 = "stream_item_sync1";
field public static final deprecated java.lang.String SYNC2 = "stream_item_sync2";
field public static final deprecated java.lang.String SYNC3 = "stream_item_sync3";
field public static final deprecated java.lang.String SYNC4 = "stream_item_sync4";
field public static final deprecated java.lang.String TEXT = "text";
field public static final deprecated java.lang.String TIMESTAMP = "timestamp";
@Deprecated protected static interface ContactsContract.StreamItemsColumns {
field @Deprecated public static final String ACCOUNT_NAME = "account_name";
field @Deprecated public static final String ACCOUNT_TYPE = "account_type";
field @Deprecated public static final String COMMENTS = "comments";
field @Deprecated public static final String CONTACT_ID = "contact_id";
field @Deprecated public static final String CONTACT_LOOKUP_KEY = "contact_lookup";
field @Deprecated public static final String DATA_SET = "data_set";
field @Deprecated public static final String RAW_CONTACT_ID = "raw_contact_id";
field @Deprecated public static final String RAW_CONTACT_SOURCE_ID = "raw_contact_source_id";
field @Deprecated public static final String RES_ICON = "icon";
field @Deprecated public static final String RES_LABEL = "label";
field @Deprecated public static final String RES_PACKAGE = "res_package";
field @Deprecated public static final String SYNC1 = "stream_item_sync1";
field @Deprecated public static final String SYNC2 = "stream_item_sync2";
field @Deprecated public static final String SYNC3 = "stream_item_sync3";
field @Deprecated public static final String SYNC4 = "stream_item_sync4";
field @Deprecated public static final String TEXT = "text";
field @Deprecated public static final String TIMESTAMP = "timestamp";
}
public static final class Settings.Global extends android.provider.Settings.NameValueTable {
field public static final deprecated java.lang.String CONTACT_METADATA_SYNC = "contact_metadata_sync";
field @Deprecated public static final String CONTACT_METADATA_SYNC = "contact_metadata_sync";
}
public static final class Settings.System extends android.provider.Settings.NameValueTable {
field public static final java.lang.String APPEND_FOR_LAST_AUDIBLE = "_last_audible";
field public static final java.lang.String VOLUME_ALARM = "volume_alarm";
field public static final java.lang.String VOLUME_BLUETOOTH_SCO = "volume_bluetooth_sco";
field public static final java.lang.String VOLUME_MUSIC = "volume_music";
field public static final java.lang.String VOLUME_NOTIFICATION = "volume_notification";
field public static final java.lang.String VOLUME_RING = "volume_ring";
field public static final java.lang.String[] VOLUME_SETTINGS;
field public static final java.lang.String VOLUME_SYSTEM = "volume_system";
field public static final java.lang.String VOLUME_VOICE = "volume_voice";
field public static final String APPEND_FOR_LAST_AUDIBLE = "_last_audible";
field public static final String VOLUME_ALARM = "volume_alarm";
field public static final String VOLUME_BLUETOOTH_SCO = "volume_bluetooth_sco";
field public static final String VOLUME_MUSIC = "volume_music";
field public static final String VOLUME_NOTIFICATION = "volume_notification";
field public static final String VOLUME_RING = "volume_ring";
field public static final String[] VOLUME_SETTINGS;
field public static final String VOLUME_SYSTEM = "volume_system";
field public static final String VOLUME_VOICE = "volume_voice";
}
public static final class Telephony.Sms.Intents {
field public static final java.lang.String SMS_EMERGENCY_CB_RECEIVED_ACTION = "android.provider.Telephony.SMS_EMERGENCY_CB_RECEIVED";
field public static final String SMS_EMERGENCY_CB_RECEIVED_ACTION = "android.provider.Telephony.SMS_EMERGENCY_CB_RECEIVED";
}
}
@@ -528,7 +527,7 @@ package android.provider {
package android.speech.tts {
public abstract class UtteranceProgressListener {
method public deprecated void onUtteranceRangeStart(java.lang.String, int, int);
method @Deprecated public void onUtteranceRangeStart(String, int, int);
}
}
@@ -536,12 +535,12 @@ package android.speech.tts {
package android.telephony {
public class NetworkScan {
method public deprecated void stop() throws android.os.RemoteException;
method @Deprecated public void stop() throws android.os.RemoteException;
}
public class TelephonyManager {
method public deprecated java.util.List<android.telephony.NeighboringCellInfo> getNeighboringCellInfo();
method public deprecated android.telephony.NetworkScan requestNetworkScan(android.telephony.NetworkScanRequest, android.telephony.TelephonyScanManager.NetworkScanCallback);
method @Deprecated @RequiresPermission(android.Manifest.permission.ACCESS_COARSE_LOCATION) public java.util.List<android.telephony.NeighboringCellInfo> getNeighboringCellInfo();
method @Deprecated @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE) public android.telephony.NetworkScan requestNetworkScan(android.telephony.NetworkScanRequest, android.telephony.TelephonyScanManager.NetworkScanCallback);
}
}
@@ -549,19 +548,19 @@ package android.telephony {
package android.text.format {
public class DateFormat {
field public static final deprecated char AM_PM = 97; // 0x0061 'a'
field public static final deprecated char CAPITAL_AM_PM = 65; // 0x0041 'A'
field public static final deprecated char DATE = 100; // 0x0064 'd'
field public static final deprecated char DAY = 69; // 0x0045 'E'
field public static final deprecated char HOUR = 104; // 0x0068 'h'
field public static final deprecated char HOUR_OF_DAY = 107; // 0x006b 'k'
field public static final deprecated char MINUTE = 109; // 0x006d 'm'
field public static final deprecated char MONTH = 77; // 0x004d 'M'
field public static final deprecated char QUOTE = 39; // 0x0027 '\''
field public static final deprecated char SECONDS = 115; // 0x0073 's'
field public static final deprecated char STANDALONE_MONTH = 76; // 0x004c 'L'
field public static final deprecated char TIME_ZONE = 122; // 0x007a 'z'
field public static final deprecated char YEAR = 121; // 0x0079 'y'
field @Deprecated public static final char AM_PM = 97; // 0x0061 'a'
field @Deprecated public static final char CAPITAL_AM_PM = 65; // 0x0041 'A'
field @Deprecated public static final char DATE = 100; // 0x0064 'd'
field @Deprecated public static final char DAY = 69; // 0x0045 'E'
field @Deprecated public static final char HOUR = 104; // 0x0068 'h'
field @Deprecated public static final char HOUR_OF_DAY = 107; // 0x006b 'k'
field @Deprecated public static final char MINUTE = 109; // 0x006d 'm'
field @Deprecated public static final char MONTH = 77; // 0x004d 'M'
field @Deprecated public static final char QUOTE = 39; // 0x0027 '\''
field @Deprecated public static final char SECONDS = 115; // 0x0073 's'
field @Deprecated public static final char STANDALONE_MONTH = 76; // 0x004c 'L'
field @Deprecated public static final char TIME_ZONE = 122; // 0x007a 'z'
field @Deprecated public static final char YEAR = 121; // 0x0079 'y'
}
}
@@ -578,7 +577,7 @@ package android.text.style {
package android.util {
public deprecated class FloatMath {
@Deprecated public class FloatMath {
method public static float ceil(float);
method public static float cos(float);
method public static float exp(float);
@@ -593,7 +592,7 @@ package android.util {
package android.view {
public class View implements android.view.accessibility.AccessibilityEventSource android.graphics.drawable.Drawable.Callback android.view.KeyEvent.Callback {
@UiThread public class View implements android.view.accessibility.AccessibilityEventSource android.graphics.drawable.Drawable.Callback android.view.KeyEvent.Callback {
method protected void initializeFadingEdge(android.content.res.TypedArray);
method protected void initializeScrollbars(android.content.res.TypedArray);
}
@@ -618,12 +617,12 @@ package android.webkit {
package android.widget {
public class ListView extends android.widget.AbsListView {
method protected <T extends android.view.View> T findViewTraversal(int);
method protected <T extends android.view.View> T findViewWithTagTraversal(java.lang.Object);
@android.widget.RemoteViews.RemoteView public class ListView extends android.widget.AbsListView {
method protected <T extends android.view.View> T findViewTraversal(@IdRes int);
method protected <T extends android.view.View> T findViewWithTagTraversal(Object);
}
public class TextView extends android.view.View implements android.view.ViewTreeObserver.OnPreDrawListener {
@android.widget.RemoteViews.RemoteView public class TextView extends android.view.View implements android.view.ViewTreeObserver.OnPreDrawListener {
method public static int getTextColor(android.content.Context, android.content.res.TypedArray, int);
method public static android.content.res.ColorStateList getTextColors(android.content.Context, android.content.res.TypedArray);
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,11 +1,12 @@
// Signature format: 2.0
package android.app {
public class Notification implements android.os.Parcelable {
method public static java.lang.Class<? extends android.app.Notification.Style> getNotificationStyleClass(java.lang.String);
method public static Class<? extends android.app.Notification.Style> getNotificationStyleClass(String);
}
public static final class Notification.TvExtender implements android.app.Notification.Extender {
method public deprecated java.lang.String getChannel();
method @Deprecated public String getChannel();
}
}
@@ -13,8 +14,8 @@ package android.app {
package android.app.admin {
public class DevicePolicyManager {
method public deprecated java.lang.String getDeviceInitializerApp();
method public deprecated android.content.ComponentName getDeviceInitializerComponent();
method @Deprecated @Nullable public String getDeviceInitializerApp();
method @Deprecated @Nullable public android.content.ComponentName getDeviceInitializerComponent();
}
}
@@ -22,31 +23,31 @@ package android.app.admin {
package android.content {
public class Intent implements java.lang.Cloneable android.os.Parcelable {
field public static final deprecated java.lang.String ACTION_DEVICE_INITIALIZATION_WIZARD = "android.intent.action.DEVICE_INITIALIZATION_WIZARD";
field public static final deprecated java.lang.String ACTION_MASTER_CLEAR = "android.intent.action.MASTER_CLEAR";
field public static final deprecated java.lang.String ACTION_SERVICE_STATE = "android.intent.action.SERVICE_STATE";
field public static final deprecated java.lang.String EXTRA_CDMA_DEFAULT_ROAMING_INDICATOR = "cdmaDefaultRoamingIndicator";
field public static final deprecated java.lang.String EXTRA_CDMA_ROAMING_INDICATOR = "cdmaRoamingIndicator";
field public static final deprecated java.lang.String EXTRA_CSS_INDICATOR = "cssIndicator";
field public static final deprecated java.lang.String EXTRA_DATA_OPERATOR_ALPHA_LONG = "data-operator-alpha-long";
field public static final deprecated java.lang.String EXTRA_DATA_OPERATOR_ALPHA_SHORT = "data-operator-alpha-short";
field public static final deprecated java.lang.String EXTRA_DATA_OPERATOR_NUMERIC = "data-operator-numeric";
field public static final deprecated java.lang.String EXTRA_DATA_RADIO_TECH = "dataRadioTechnology";
field public static final deprecated java.lang.String EXTRA_DATA_REG_STATE = "dataRegState";
field public static final deprecated java.lang.String EXTRA_DATA_ROAMING_TYPE = "dataRoamingType";
field public static final deprecated java.lang.String EXTRA_EMERGENCY_ONLY = "emergencyOnly";
field public static final deprecated java.lang.String EXTRA_IS_DATA_ROAMING_FROM_REGISTRATION = "isDataRoamingFromRegistration";
field public static final deprecated java.lang.String EXTRA_IS_USING_CARRIER_AGGREGATION = "isUsingCarrierAggregation";
field public static final deprecated java.lang.String EXTRA_LTE_EARFCN_RSRP_BOOST = "LteEarfcnRsrpBoost";
field public static final deprecated java.lang.String EXTRA_MANUAL = "manual";
field public static final deprecated java.lang.String EXTRA_NETWORK_ID = "networkId";
field public static final deprecated java.lang.String EXTRA_OPERATOR_ALPHA_LONG = "operator-alpha-long";
field public static final deprecated java.lang.String EXTRA_OPERATOR_ALPHA_SHORT = "operator-alpha-short";
field public static final deprecated java.lang.String EXTRA_OPERATOR_NUMERIC = "operator-numeric";
field public static final deprecated java.lang.String EXTRA_SYSTEM_ID = "systemId";
field public static final deprecated java.lang.String EXTRA_VOICE_RADIO_TECH = "radioTechnology";
field public static final deprecated java.lang.String EXTRA_VOICE_REG_STATE = "voiceRegState";
field public static final deprecated java.lang.String EXTRA_VOICE_ROAMING_TYPE = "voiceRoamingType";
field @Deprecated public static final String ACTION_DEVICE_INITIALIZATION_WIZARD = "android.intent.action.DEVICE_INITIALIZATION_WIZARD";
field @Deprecated public static final String ACTION_MASTER_CLEAR = "android.intent.action.MASTER_CLEAR";
field @Deprecated public static final String ACTION_SERVICE_STATE = "android.intent.action.SERVICE_STATE";
field @Deprecated public static final String EXTRA_CDMA_DEFAULT_ROAMING_INDICATOR = "cdmaDefaultRoamingIndicator";
field @Deprecated public static final String EXTRA_CDMA_ROAMING_INDICATOR = "cdmaRoamingIndicator";
field @Deprecated public static final String EXTRA_CSS_INDICATOR = "cssIndicator";
field @Deprecated public static final String EXTRA_DATA_OPERATOR_ALPHA_LONG = "data-operator-alpha-long";
field @Deprecated public static final String EXTRA_DATA_OPERATOR_ALPHA_SHORT = "data-operator-alpha-short";
field @Deprecated public static final String EXTRA_DATA_OPERATOR_NUMERIC = "data-operator-numeric";
field @Deprecated public static final String EXTRA_DATA_RADIO_TECH = "dataRadioTechnology";
field @Deprecated public static final String EXTRA_DATA_REG_STATE = "dataRegState";
field @Deprecated public static final String EXTRA_DATA_ROAMING_TYPE = "dataRoamingType";
field @Deprecated public static final String EXTRA_EMERGENCY_ONLY = "emergencyOnly";
field @Deprecated public static final String EXTRA_IS_DATA_ROAMING_FROM_REGISTRATION = "isDataRoamingFromRegistration";
field @Deprecated public static final String EXTRA_IS_USING_CARRIER_AGGREGATION = "isUsingCarrierAggregation";
field @Deprecated public static final String EXTRA_LTE_EARFCN_RSRP_BOOST = "LteEarfcnRsrpBoost";
field @Deprecated public static final String EXTRA_MANUAL = "manual";
field @Deprecated public static final String EXTRA_NETWORK_ID = "networkId";
field @Deprecated public static final String EXTRA_OPERATOR_ALPHA_LONG = "operator-alpha-long";
field @Deprecated public static final String EXTRA_OPERATOR_ALPHA_SHORT = "operator-alpha-short";
field @Deprecated public static final String EXTRA_OPERATOR_NUMERIC = "operator-numeric";
field @Deprecated public static final String EXTRA_SYSTEM_ID = "systemId";
field @Deprecated public static final String EXTRA_VOICE_RADIO_TECH = "radioTechnology";
field @Deprecated public static final String EXTRA_VOICE_REG_STATE = "voiceRegState";
field @Deprecated public static final String EXTRA_VOICE_ROAMING_TYPE = "voiceRoamingType";
}
}
@@ -54,7 +55,7 @@ package android.content {
package android.media.tv {
public final class TvInputManager {
method public android.media.tv.TvInputManager.Hardware acquireTvInputHardware(int, android.media.tv.TvInputManager.HardwareCallback, android.media.tv.TvInputInfo);
method @RequiresPermission(android.Manifest.permission.TV_INPUT_HARDWARE) public android.media.tv.TvInputManager.Hardware acquireTvInputHardware(int, android.media.tv.TvInputManager.HardwareCallback, android.media.tv.TvInputInfo);
}
public static final class TvInputManager.Hardware {
@@ -65,7 +66,7 @@ package android.media.tv {
package android.net.wifi {
public deprecated class BatchedScanResult implements android.os.Parcelable {
@Deprecated public class BatchedScanResult implements android.os.Parcelable {
ctor public BatchedScanResult();
ctor public BatchedScanResult(android.net.wifi.BatchedScanResult);
field public final java.util.List<android.net.wifi.ScanResult> scanResults;
@@ -85,8 +86,8 @@ package android.os {
}
public final class PowerManager {
method public deprecated boolean isScreenBrightnessBoosted();
field public static final deprecated java.lang.String ACTION_SCREEN_BRIGHTNESS_BOOST_CHANGED = "android.os.action.SCREEN_BRIGHTNESS_BOOST_CHANGED";
method @Deprecated public boolean isScreenBrightnessBoosted();
field @Deprecated public static final String ACTION_SCREEN_BRIGHTNESS_BOOST_CHANGED = "android.os.action.SCREEN_BRIGHTNESS_BOOST_CHANGED";
}
}
@@ -94,31 +95,31 @@ package android.os {
package android.security.keystore.recovery {
public final class KeyChainSnapshot implements android.os.Parcelable {
method public deprecated byte[] getTrustedHardwarePublicKey();
method @Deprecated @NonNull public byte[] getTrustedHardwarePublicKey();
}
public class RecoveryController {
method public deprecated byte[] generateAndStoreKey(java.lang.String, byte[]) throws android.security.keystore.recovery.InternalRecoveryServiceException, android.security.keystore.recovery.LockScreenRequiredException;
method public deprecated java.security.Key generateKey(java.lang.String, byte[]) throws android.security.keystore.recovery.InternalRecoveryServiceException, android.security.keystore.recovery.LockScreenRequiredException;
method public deprecated java.util.List<java.lang.String> getAliases(java.lang.String) throws android.security.keystore.recovery.InternalRecoveryServiceException;
method public deprecated android.security.keystore.recovery.KeyChainSnapshot getRecoveryData() throws android.security.keystore.recovery.InternalRecoveryServiceException;
method public deprecated int getRecoveryStatus(java.lang.String, java.lang.String) throws android.security.keystore.recovery.InternalRecoveryServiceException;
method public deprecated void initRecoveryService(java.lang.String, byte[]) throws java.security.cert.CertificateException, android.security.keystore.recovery.InternalRecoveryServiceException;
method public deprecated void setRecoveryStatus(java.lang.String, java.lang.String, int) throws android.security.keystore.recovery.InternalRecoveryServiceException, android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE) public byte[] generateAndStoreKey(@NonNull String, byte[]) throws android.security.keystore.recovery.InternalRecoveryServiceException, android.security.keystore.recovery.LockScreenRequiredException;
method @Deprecated @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE) public java.security.Key generateKey(@NonNull String, byte[]) throws android.security.keystore.recovery.InternalRecoveryServiceException, android.security.keystore.recovery.LockScreenRequiredException;
method @Deprecated @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE) public java.util.List<java.lang.String> getAliases(@Nullable String) throws android.security.keystore.recovery.InternalRecoveryServiceException;
method @Deprecated @Nullable @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE) public android.security.keystore.recovery.KeyChainSnapshot getRecoveryData() throws android.security.keystore.recovery.InternalRecoveryServiceException;
method @Deprecated @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE) public int getRecoveryStatus(String, String) throws android.security.keystore.recovery.InternalRecoveryServiceException;
method @Deprecated @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE) public void initRecoveryService(@NonNull String, @NonNull byte[]) throws java.security.cert.CertificateException, android.security.keystore.recovery.InternalRecoveryServiceException;
method @Deprecated @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE) public void setRecoveryStatus(@NonNull String, String, int) throws android.security.keystore.recovery.InternalRecoveryServiceException, android.content.pm.PackageManager.NameNotFoundException;
}
public class RecoverySession implements java.lang.AutoCloseable {
method public deprecated java.util.Map<java.lang.String, byte[]> recoverKeys(byte[], java.util.List<android.security.keystore.recovery.WrappedApplicationKey>) throws android.security.keystore.recovery.DecryptionFailedException, android.security.keystore.recovery.InternalRecoveryServiceException, android.security.keystore.recovery.SessionExpiredException;
method public deprecated byte[] start(byte[], byte[], byte[], java.util.List<android.security.keystore.recovery.KeyChainProtectionParams>) throws java.security.cert.CertificateException, android.security.keystore.recovery.InternalRecoveryServiceException;
method public deprecated byte[] start(java.security.cert.CertPath, byte[], byte[], java.util.List<android.security.keystore.recovery.KeyChainProtectionParams>) throws java.security.cert.CertificateException, android.security.keystore.recovery.InternalRecoveryServiceException;
method @Deprecated @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE) public java.util.Map<java.lang.String,byte[]> recoverKeys(@NonNull byte[], @NonNull java.util.List<android.security.keystore.recovery.WrappedApplicationKey>) throws android.security.keystore.recovery.DecryptionFailedException, android.security.keystore.recovery.InternalRecoveryServiceException, android.security.keystore.recovery.SessionExpiredException;
method @Deprecated @NonNull @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE) public byte[] start(@NonNull byte[], @NonNull byte[], @NonNull byte[], @NonNull java.util.List<android.security.keystore.recovery.KeyChainProtectionParams>) throws java.security.cert.CertificateException, android.security.keystore.recovery.InternalRecoveryServiceException;
method @Deprecated @NonNull @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE) public byte[] start(@NonNull java.security.cert.CertPath, @NonNull byte[], @NonNull byte[], @NonNull java.util.List<android.security.keystore.recovery.KeyChainProtectionParams>) throws java.security.cert.CertificateException, android.security.keystore.recovery.InternalRecoveryServiceException;
}
public final class WrappedApplicationKey implements android.os.Parcelable {
method public deprecated byte[] getAccount();
method @Deprecated @NonNull public byte[] getAccount();
}
public static class WrappedApplicationKey.Builder {
method public deprecated android.security.keystore.recovery.WrappedApplicationKey.Builder setAccount(byte[]);
method @Deprecated public android.security.keystore.recovery.WrappedApplicationKey.Builder setAccount(@NonNull byte[]);
}
}
@@ -127,10 +128,10 @@ package android.service.notification {
public abstract class NotificationListenerService extends android.app.Service {
method public android.service.notification.StatusBarNotification[] getActiveNotifications(int);
method public android.service.notification.StatusBarNotification[] getActiveNotifications(java.lang.String[], int);
method public android.service.notification.StatusBarNotification[] getActiveNotifications(String[], int);
method public void registerAsSystemService(android.content.Context, android.content.ComponentName, int) throws android.os.RemoteException;
method public final void setOnNotificationPostedTrim(int);
method public final void snoozeNotification(java.lang.String, java.lang.String);
method public final void snoozeNotification(String, String);
method public void unregisterAsSystemService() throws android.os.RemoteException;
field public static final int TRIM_FULL = 0; // 0x0
field public static final int TRIM_LIGHT = 1; // 0x1
@@ -146,9 +147,9 @@ package android.service.notification {
package android.telephony {
public class TelephonyManager {
method public deprecated void answerRingingCall();
method public deprecated boolean endCall();
method public deprecated void silenceRinger();
method @Deprecated @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE) public void answerRingingCall();
method @Deprecated @RequiresPermission(android.Manifest.permission.CALL_PHONE) public boolean endCall();
method @Deprecated public void silenceRinger();
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -1,12 +1,13 @@
// Signature format: 2.0
package com.android.future.usb {
public class UsbAccessory {
method public java.lang.String getDescription();
method public java.lang.String getManufacturer();
method public java.lang.String getModel();
method public java.lang.String getSerial();
method public java.lang.String getUri();
method public java.lang.String getVersion();
method public String getDescription();
method public String getManufacturer();
method public String getModel();
method public String getSerial();
method public String getUri();
method public String getVersion();
}
public class UsbManager {
@@ -16,9 +17,9 @@ package com.android.future.usb {
method public boolean hasPermission(com.android.future.usb.UsbAccessory);
method public android.os.ParcelFileDescriptor openAccessory(com.android.future.usb.UsbAccessory);
method public void requestPermission(com.android.future.usb.UsbAccessory, android.app.PendingIntent);
field public static final java.lang.String ACTION_USB_ACCESSORY_ATTACHED = "android.hardware.usb.action.USB_ACCESSORY_ATTACHED";
field public static final java.lang.String ACTION_USB_ACCESSORY_DETACHED = "android.hardware.usb.action.USB_ACCESSORY_DETACHED";
field public static final java.lang.String EXTRA_PERMISSION_GRANTED = "permission";
field public static final String ACTION_USB_ACCESSORY_ATTACHED = "android.hardware.usb.action.USB_ACCESSORY_ATTACHED";
field public static final String ACTION_USB_ACCESSORY_DETACHED = "android.hardware.usb.action.USB_ACCESSORY_DETACHED";
field public static final String EXTRA_PERMISSION_GRANTED = "permission";
}
}

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -1,23 +1,24 @@
// Signature format: 2.0
package com.android.location.provider {
public abstract deprecated class FusedProvider {
ctor public FusedProvider();
method public android.os.IBinder getBinder();
@Deprecated public abstract class FusedProvider {
ctor @Deprecated public FusedProvider();
method @Deprecated public android.os.IBinder getBinder();
}
public abstract class LocationProviderBase {
ctor public LocationProviderBase(java.lang.String, com.android.location.provider.ProviderPropertiesUnbundled);
ctor public LocationProviderBase(String, com.android.location.provider.ProviderPropertiesUnbundled);
method public android.os.IBinder getBinder();
method public abstract void onDisable();
method public void onDump(java.io.FileDescriptor, java.io.PrintWriter, java.lang.String[]);
method public void onDump(java.io.FileDescriptor, java.io.PrintWriter, String[]);
method public abstract void onEnable();
method public abstract int onGetStatus(android.os.Bundle);
method public abstract long onGetStatusUpdateTime();
method public boolean onSendExtraCommand(java.lang.String, android.os.Bundle);
method public boolean onSendExtraCommand(String, android.os.Bundle);
method public abstract void onSetRequest(com.android.location.provider.ProviderRequestUnbundled, android.os.WorkSource);
method public final void reportLocation(android.location.Location);
field public static final java.lang.String EXTRA_NO_GPS_LOCATION = "noGPSLocation";
field public static final java.lang.String FUSED_PROVIDER = "fused";
field public static final String EXTRA_NO_GPS_LOCATION = "noGPSLocation";
field public static final String FUSED_PROVIDER = "fused";
}
public final class LocationRequestUnbundled {

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -1,17 +1,18 @@
// Signature format: 2.0
package com.android.media.remotedisplay {
public class RemoteDisplay {
ctor public RemoteDisplay(java.lang.String, java.lang.String);
method public java.lang.String getDescription();
method public java.lang.String getId();
method public java.lang.String getName();
ctor public RemoteDisplay(String, String);
method public String getDescription();
method public String getId();
method public String getName();
method public int getPresentationDisplayId();
method public int getStatus();
method public int getVolume();
method public int getVolumeHandling();
method public int getVolumeMax();
method public void setDescription(java.lang.String);
method public void setName(java.lang.String);
method public void setDescription(String);
method public void setName(String);
method public void setPresentationDisplayId(int);
method public void setStatus(int);
method public void setVolume(int);
@@ -29,7 +30,7 @@ package com.android.media.remotedisplay {
public abstract class RemoteDisplayProvider {
ctor public RemoteDisplayProvider(android.content.Context);
method public void addDisplay(com.android.media.remotedisplay.RemoteDisplay);
method public com.android.media.remotedisplay.RemoteDisplay findRemoteDisplay(java.lang.String);
method public com.android.media.remotedisplay.RemoteDisplay findRemoteDisplay(String);
method public android.os.IBinder getBinder();
method public final android.content.Context getContext();
method public int getDiscoveryMode();
@@ -45,7 +46,7 @@ package com.android.media.remotedisplay {
field public static final int DISCOVERY_MODE_ACTIVE = 2; // 0x2
field public static final int DISCOVERY_MODE_NONE = 0; // 0x0
field public static final int DISCOVERY_MODE_PASSIVE = 1; // 0x1
field public static final java.lang.String SERVICE_INTERFACE = "com.android.media.remotedisplay.RemoteDisplayProvider";
field public static final String SERVICE_INTERFACE = "com.android.media.remotedisplay.RemoteDisplayProvider";
}
}

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -1,9 +1,10 @@
// Signature format: 2.0
package com.android.mediadrm.signer {
public final class MediaDrmSigner {
method public static com.android.mediadrm.signer.MediaDrmSigner.CertificateRequest getCertificateRequest(android.media.MediaDrm, int, java.lang.String);
method public static com.android.mediadrm.signer.MediaDrmSigner.CertificateRequest getCertificateRequest(android.media.MediaDrm, int, String);
method public static com.android.mediadrm.signer.MediaDrmSigner.Certificate provideCertificateResponse(android.media.MediaDrm, byte[]) throws android.media.DeniedByServerException;
method public static byte[] signRSA(android.media.MediaDrm, byte[], java.lang.String, byte[], byte[]);
method public static byte[] signRSA(android.media.MediaDrm, byte[], String, byte[], byte[]);
field public static final int CERTIFICATE_TYPE_X509 = 1; // 0x1
}
@@ -14,7 +15,7 @@ package com.android.mediadrm.signer {
public static final class MediaDrmSigner.CertificateRequest {
method public byte[] getData();
method public java.lang.String getDefaultUrl();
method public String getDefaultUrl();
}
}

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -1,3 +1,4 @@
// Signature format: 2.0
package com.android.media.tv.remoteprovider {
public abstract class TvRemoteProvider {
@@ -7,14 +8,14 @@ package com.android.media.tv.remoteprovider {
method public android.os.IBinder getBinder();
method public final android.content.Context getContext();
method public void onInputBridgeConnected(android.os.IBinder);
method public void openRemoteInputBridge(android.os.IBinder, java.lang.String, int, int, int) throws java.lang.RuntimeException;
method public void openRemoteInputBridge(android.os.IBinder, String, int, int, int) throws java.lang.RuntimeException;
method public void sendKeyDown(android.os.IBinder, int) throws java.lang.RuntimeException;
method public void sendKeyUp(android.os.IBinder, int) throws java.lang.RuntimeException;
method public void sendPointerDown(android.os.IBinder, int, int, int) throws java.lang.RuntimeException;
method public void sendPointerSync(android.os.IBinder) throws java.lang.RuntimeException;
method public void sendPointerUp(android.os.IBinder, int) throws java.lang.RuntimeException;
method public void sendTimestamp(android.os.IBinder, long) throws java.lang.RuntimeException;
field public static final java.lang.String SERVICE_INTERFACE = "com.android.media.tv.remoteprovider.TvRemoteProvider";
field public static final String SERVICE_INTERFACE = "com.android.media.tv.remoteprovider.TvRemoteProvider";
}
}

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -1,44 +1,45 @@
// Signature format: 2.0
package com.android.nfc_extras {
public class EeAlreadyOpenException extends com.android.nfc_extras.EeIOException {
ctor public EeAlreadyOpenException();
ctor public EeAlreadyOpenException(java.lang.String);
ctor public EeAlreadyOpenException(String);
}
public class EeExternalFieldException extends com.android.nfc_extras.EeIOException {
ctor public EeExternalFieldException();
ctor public EeExternalFieldException(java.lang.String);
ctor public EeExternalFieldException(String);
}
public class EeIOException extends java.io.IOException {
ctor public EeIOException();
ctor public EeIOException(java.lang.String);
ctor public EeIOException(String);
}
public class EeInitializationException extends com.android.nfc_extras.EeIOException {
ctor public EeInitializationException();
ctor public EeInitializationException(java.lang.String);
ctor public EeInitializationException(String);
}
public class EeListenModeException extends com.android.nfc_extras.EeIOException {
ctor public EeListenModeException();
ctor public EeListenModeException(java.lang.String);
ctor public EeListenModeException(String);
}
public class EeNfcDisabledException extends com.android.nfc_extras.EeIOException {
ctor public EeNfcDisabledException();
ctor public EeNfcDisabledException(java.lang.String);
ctor public EeNfcDisabledException(String);
}
public final class NfcAdapterExtras {
method public void authenticate(byte[]);
method public static com.android.nfc_extras.NfcAdapterExtras get(android.nfc.NfcAdapter);
method public com.android.nfc_extras.NfcAdapterExtras.CardEmulationRoute getCardEmulationRoute();
method public java.lang.String getDriverName();
method public String getDriverName();
method public com.android.nfc_extras.NfcExecutionEnvironment getEmbeddedExecutionEnvironment();
method public void setCardEmulationRoute(com.android.nfc_extras.NfcAdapterExtras.CardEmulationRoute);
field public static final java.lang.String ACTION_RF_FIELD_OFF_DETECTED = "com.android.nfc_extras.action.RF_FIELD_OFF_DETECTED";
field public static final java.lang.String ACTION_RF_FIELD_ON_DETECTED = "com.android.nfc_extras.action.RF_FIELD_ON_DETECTED";
field public static final String ACTION_RF_FIELD_OFF_DETECTED = "com.android.nfc_extras.action.RF_FIELD_OFF_DETECTED";
field public static final String ACTION_RF_FIELD_ON_DETECTED = "com.android.nfc_extras.action.RF_FIELD_ON_DETECTED";
}
public static final class NfcAdapterExtras.CardEmulationRoute {
@@ -53,7 +54,7 @@ package com.android.nfc_extras {
method public void close() throws java.io.IOException;
method public void open() throws com.android.nfc_extras.EeIOException;
method public byte[] transceive(byte[]) throws java.io.IOException;
field public static final java.lang.String ACTION_AID_SELECTED = "com.android.nfc_extras.action.AID_SELECTED";
field public static final String ACTION_AID_SELECTED = "com.android.nfc_extras.action.AID_SELECTED";
}
}

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -1,3 +1,4 @@
// Signature format: 2.0
package javax.obex {
public class ObexPacket {

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -1,84 +1,87 @@
// Signature format: 2.0
package android.test {
public deprecated class AndroidTestCase extends junit.framework.TestCase {
ctor public AndroidTestCase();
method public void assertActivityRequiresPermission(java.lang.String, java.lang.String, java.lang.String);
method public void assertReadingContentUriRequiresPermission(android.net.Uri, java.lang.String);
method public void assertWritingContentUriRequiresPermission(android.net.Uri, java.lang.String);
method public android.content.Context getContext();
method protected void scrubClass(java.lang.Class<?>) throws java.lang.IllegalAccessException;
method public void setContext(android.content.Context);
method public void testAndroidTestCaseSetupProperly();
field protected android.content.Context mContext;
@Deprecated public class AndroidTestCase extends junit.framework.TestCase {
ctor @Deprecated public AndroidTestCase();
method @Deprecated public void assertActivityRequiresPermission(String, String, String);
method @Deprecated public void assertReadingContentUriRequiresPermission(android.net.Uri, String);
method @Deprecated public void assertWritingContentUriRequiresPermission(android.net.Uri, String);
method @Deprecated public android.content.Context getContext();
method @Deprecated protected void scrubClass(Class<?>) throws java.lang.IllegalAccessException;
method @Deprecated public void setContext(android.content.Context);
method @Deprecated @android.test.suitebuilder.annotation.Suppress public void testAndroidTestCaseSetupProperly();
field @Deprecated protected android.content.Context mContext;
}
public abstract deprecated class FlakyTest implements java.lang.annotation.Annotation {
@Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target(java.lang.annotation.ElementType.METHOD) public @interface FlakyTest {
method @Deprecated public abstract int tolerance() default 1;
}
public deprecated class InstrumentationTestCase extends junit.framework.TestCase {
ctor public InstrumentationTestCase();
method public android.app.Instrumentation getInstrumentation();
method public deprecated void injectInsrumentation(android.app.Instrumentation);
method public void injectInstrumentation(android.app.Instrumentation);
method public final <T extends android.app.Activity> T launchActivity(java.lang.String, java.lang.Class<T>, android.os.Bundle);
method public final <T extends android.app.Activity> T launchActivityWithIntent(java.lang.String, java.lang.Class<T>, android.content.Intent);
method public void runTestOnUiThread(java.lang.Runnable) throws java.lang.Throwable;
method public void sendKeys(java.lang.String);
method public void sendKeys(int...);
method public void sendRepeatedKeys(int...);
@Deprecated public class InstrumentationTestCase extends junit.framework.TestCase {
ctor @Deprecated public InstrumentationTestCase();
method @Deprecated public android.app.Instrumentation getInstrumentation();
method @Deprecated public void injectInsrumentation(android.app.Instrumentation);
method @Deprecated public void injectInstrumentation(android.app.Instrumentation);
method @Deprecated public final <T extends android.app.Activity> T launchActivity(String, Class<T>, android.os.Bundle);
method @Deprecated public final <T extends android.app.Activity> T launchActivityWithIntent(String, Class<T>, android.content.Intent);
method @Deprecated public void runTestOnUiThread(Runnable) throws java.lang.Throwable;
method @Deprecated public void sendKeys(String);
method @Deprecated public void sendKeys(int...);
method @Deprecated public void sendRepeatedKeys(int...);
}
public deprecated class InstrumentationTestSuite extends junit.framework.TestSuite {
ctor public InstrumentationTestSuite(android.app.Instrumentation);
ctor public InstrumentationTestSuite(java.lang.String, android.app.Instrumentation);
ctor public InstrumentationTestSuite(java.lang.Class, android.app.Instrumentation);
method public void addTestSuite(java.lang.Class);
@Deprecated public class InstrumentationTestSuite extends junit.framework.TestSuite {
ctor @Deprecated public InstrumentationTestSuite(android.app.Instrumentation);
ctor @Deprecated public InstrumentationTestSuite(String, android.app.Instrumentation);
ctor @Deprecated public InstrumentationTestSuite(Class, android.app.Instrumentation);
method @Deprecated public void addTestSuite(Class);
}
public abstract deprecated interface PerformanceTestCase {
method public abstract boolean isPerformanceOnly();
method public abstract int startPerformance(android.test.PerformanceTestCase.Intermediates);
@Deprecated public interface PerformanceTestCase {
method @Deprecated public boolean isPerformanceOnly();
method @Deprecated public int startPerformance(android.test.PerformanceTestCase.Intermediates);
}
public static abstract interface PerformanceTestCase.Intermediates {
method public abstract void addIntermediate(java.lang.String);
method public abstract void addIntermediate(java.lang.String, long);
method public abstract void finishTiming(boolean);
method public abstract void setInternalIterations(int);
method public abstract void startTiming(boolean);
@Deprecated public static interface PerformanceTestCase.Intermediates {
method @Deprecated public void addIntermediate(String);
method @Deprecated public void addIntermediate(String, long);
method @Deprecated public void finishTiming(boolean);
method @Deprecated public void setInternalIterations(int);
method @Deprecated public void startTiming(boolean);
}
public abstract deprecated class RepetitiveTest implements java.lang.annotation.Annotation {
@Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target(java.lang.annotation.ElementType.METHOD) public @interface RepetitiveTest {
method @Deprecated public abstract int numIterations() default 1;
}
public abstract deprecated class UiThreadTest implements java.lang.annotation.Annotation {
@Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target(java.lang.annotation.ElementType.METHOD) public @interface UiThreadTest {
}
}
package android.test.suitebuilder.annotation {
public abstract deprecated class LargeTest implements java.lang.annotation.Annotation {
@Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.TYPE}) public @interface LargeTest {
}
public abstract deprecated class MediumTest implements java.lang.annotation.Annotation {
@Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.TYPE}) public @interface MediumTest {
}
public abstract deprecated class SmallTest implements java.lang.annotation.Annotation {
@Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.TYPE}) public @interface SmallTest {
}
public abstract deprecated class Smoke implements java.lang.annotation.Annotation {
@Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.TYPE}) public @interface Smoke {
}
public abstract deprecated class Suppress implements java.lang.annotation.Annotation {
@Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.TYPE}) public @interface Suppress {
}
}
package com.android.internal.util {
public abstract deprecated interface Predicate<T> {
method public abstract boolean apply(T);
@Deprecated public interface Predicate<T> {
method @Deprecated public boolean apply(T);
}
}
@@ -87,117 +90,117 @@ package junit.framework {
public class Assert {
ctor protected Assert();
method public static void assertEquals(java.lang.String, java.lang.Object, java.lang.Object);
method public static void assertEquals(java.lang.Object, java.lang.Object);
method public static void assertEquals(java.lang.String, java.lang.String, java.lang.String);
method public static void assertEquals(java.lang.String, java.lang.String);
method public static void assertEquals(java.lang.String, double, double, double);
method public static void assertEquals(String, Object, Object);
method public static void assertEquals(Object, Object);
method public static void assertEquals(String, String, String);
method public static void assertEquals(String, String);
method public static void assertEquals(String, double, double, double);
method public static void assertEquals(double, double, double);
method public static void assertEquals(java.lang.String, float, float, float);
method public static void assertEquals(String, float, float, float);
method public static void assertEquals(float, float, float);
method public static void assertEquals(java.lang.String, long, long);
method public static void assertEquals(String, long, long);
method public static void assertEquals(long, long);
method public static void assertEquals(java.lang.String, boolean, boolean);
method public static void assertEquals(String, boolean, boolean);
method public static void assertEquals(boolean, boolean);
method public static void assertEquals(java.lang.String, byte, byte);
method public static void assertEquals(String, byte, byte);
method public static void assertEquals(byte, byte);
method public static void assertEquals(java.lang.String, char, char);
method public static void assertEquals(String, char, char);
method public static void assertEquals(char, char);
method public static void assertEquals(java.lang.String, short, short);
method public static void assertEquals(String, short, short);
method public static void assertEquals(short, short);
method public static void assertEquals(java.lang.String, int, int);
method public static void assertEquals(String, int, int);
method public static void assertEquals(int, int);
method public static void assertFalse(java.lang.String, boolean);
method public static void assertFalse(String, boolean);
method public static void assertFalse(boolean);
method public static void assertNotNull(java.lang.Object);
method public static void assertNotNull(java.lang.String, java.lang.Object);
method public static void assertNotSame(java.lang.String, java.lang.Object, java.lang.Object);
method public static void assertNotSame(java.lang.Object, java.lang.Object);
method public static void assertNull(java.lang.Object);
method public static void assertNull(java.lang.String, java.lang.Object);
method public static void assertSame(java.lang.String, java.lang.Object, java.lang.Object);
method public static void assertSame(java.lang.Object, java.lang.Object);
method public static void assertTrue(java.lang.String, boolean);
method public static void assertNotNull(Object);
method public static void assertNotNull(String, Object);
method public static void assertNotSame(String, Object, Object);
method public static void assertNotSame(Object, Object);
method public static void assertNull(Object);
method public static void assertNull(String, Object);
method public static void assertSame(String, Object, Object);
method public static void assertSame(Object, Object);
method public static void assertTrue(String, boolean);
method public static void assertTrue(boolean);
method public static void fail(java.lang.String);
method public static void fail(String);
method public static void fail();
method public static void failNotEquals(java.lang.String, java.lang.Object, java.lang.Object);
method public static void failNotSame(java.lang.String, java.lang.Object, java.lang.Object);
method public static void failSame(java.lang.String);
method public static java.lang.String format(java.lang.String, java.lang.Object, java.lang.Object);
method public static void failNotEquals(String, Object, Object);
method public static void failNotSame(String, Object, Object);
method public static void failSame(String);
method public static String format(String, Object, Object);
}
public class AssertionFailedError extends java.lang.AssertionError {
ctor public AssertionFailedError();
ctor public AssertionFailedError(java.lang.String);
ctor public AssertionFailedError(String);
}
public class ComparisonFailure extends junit.framework.AssertionFailedError {
ctor public ComparisonFailure(java.lang.String, java.lang.String, java.lang.String);
method public java.lang.String getActual();
method public java.lang.String getExpected();
ctor public ComparisonFailure(String, String, String);
method public String getActual();
method public String getExpected();
}
public abstract interface Protectable {
method public abstract void protect() throws java.lang.Throwable;
public interface Protectable {
method public void protect() throws java.lang.Throwable;
}
public abstract interface Test {
method public abstract int countTestCases();
method public abstract void run(junit.framework.TestResult);
public interface Test {
method public int countTestCases();
method public void run(junit.framework.TestResult);
}
public abstract class TestCase extends junit.framework.Assert implements junit.framework.Test {
ctor public TestCase();
ctor public TestCase(java.lang.String);
ctor public TestCase(String);
method public int countTestCases();
method protected junit.framework.TestResult createResult();
method public java.lang.String getName();
method public String getName();
method public junit.framework.TestResult run();
method public void run(junit.framework.TestResult);
method public void runBare() throws java.lang.Throwable;
method protected void runTest() throws java.lang.Throwable;
method public void setName(java.lang.String);
method public void setName(String);
method protected void setUp() throws java.lang.Exception;
method protected void tearDown() throws java.lang.Exception;
}
public class TestFailure {
ctor public TestFailure(junit.framework.Test, java.lang.Throwable);
method public java.lang.String exceptionMessage();
ctor public TestFailure(junit.framework.Test, Throwable);
method public String exceptionMessage();
method public junit.framework.Test failedTest();
method public boolean isFailure();
method public java.lang.Throwable thrownException();
method public java.lang.String trace();
method public Throwable thrownException();
method public String trace();
field protected junit.framework.Test fFailedTest;
field protected java.lang.Throwable fThrownException;
field protected Throwable fThrownException;
}
public abstract interface TestListener {
method public abstract void addError(junit.framework.Test, java.lang.Throwable);
method public abstract void addFailure(junit.framework.Test, junit.framework.AssertionFailedError);
method public abstract void endTest(junit.framework.Test);
method public abstract void startTest(junit.framework.Test);
public interface TestListener {
method public void addError(junit.framework.Test, Throwable);
method public void addFailure(junit.framework.Test, junit.framework.AssertionFailedError);
method public void endTest(junit.framework.Test);
method public void startTest(junit.framework.Test);
}
public class TestResult {
ctor public TestResult();
method public synchronized void addError(junit.framework.Test, java.lang.Throwable);
method public synchronized void addFailure(junit.framework.Test, junit.framework.AssertionFailedError);
method public synchronized void addListener(junit.framework.TestListener);
method public void addError(junit.framework.Test, Throwable);
method public void addFailure(junit.framework.Test, junit.framework.AssertionFailedError);
method public void addListener(junit.framework.TestListener);
method public void endTest(junit.framework.Test);
method public synchronized int errorCount();
method public synchronized java.util.Enumeration<junit.framework.TestFailure> errors();
method public synchronized int failureCount();
method public synchronized java.util.Enumeration<junit.framework.TestFailure> failures();
method public synchronized void removeListener(junit.framework.TestListener);
method public int errorCount();
method public java.util.Enumeration<junit.framework.TestFailure> errors();
method public int failureCount();
method public java.util.Enumeration<junit.framework.TestFailure> failures();
method public void removeListener(junit.framework.TestListener);
method protected void run(junit.framework.TestCase);
method public synchronized int runCount();
method public int runCount();
method public void runProtected(junit.framework.Test, junit.framework.Protectable);
method public synchronized boolean shouldStop();
method public boolean shouldStop();
method public void startTest(junit.framework.Test);
method public synchronized void stop();
method public synchronized boolean wasSuccessful();
method public void stop();
method public boolean wasSuccessful();
field protected java.util.Vector<junit.framework.TestFailure> fErrors;
field protected java.util.Vector<junit.framework.TestFailure> fFailures;
field protected java.util.Vector<junit.framework.TestListener> fListeners;
@@ -206,24 +209,24 @@ package junit.framework {
public class TestSuite implements junit.framework.Test {
ctor public TestSuite();
ctor public TestSuite(java.lang.Class<?>);
ctor public TestSuite(java.lang.Class<? extends junit.framework.TestCase>, java.lang.String);
ctor public TestSuite(java.lang.String);
ctor public TestSuite(java.lang.Class<?>...);
ctor public TestSuite(java.lang.Class<? extends junit.framework.TestCase>[], java.lang.String);
ctor public TestSuite(Class<?>);
ctor public TestSuite(Class<? extends junit.framework.TestCase>, String);
ctor public TestSuite(String);
ctor public TestSuite(Class<?>...);
ctor public TestSuite(Class<? extends junit.framework.TestCase>[], String);
method public void addTest(junit.framework.Test);
method public void addTestSuite(java.lang.Class<? extends junit.framework.TestCase>);
method public void addTestSuite(Class<? extends junit.framework.TestCase>);
method public int countTestCases();
method public static junit.framework.Test createTest(java.lang.Class<?>, java.lang.String);
method public java.lang.String getName();
method public static java.lang.reflect.Constructor<?> getTestConstructor(java.lang.Class<?>) throws java.lang.NoSuchMethodException;
method public static junit.framework.Test createTest(Class<?>, String);
method public String getName();
method public static java.lang.reflect.Constructor<?> getTestConstructor(Class<?>) throws java.lang.NoSuchMethodException;
method public void run(junit.framework.TestResult);
method public void runTest(junit.framework.Test, junit.framework.TestResult);
method public void setName(java.lang.String);
method public void setName(String);
method public junit.framework.Test testAt(int);
method public int testCount();
method public java.util.Enumeration<junit.framework.Test> tests();
method public static junit.framework.Test warning(java.lang.String);
method public static junit.framework.Test warning(String);
}
}

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -1,124 +1,125 @@
// Signature format: 2.0
package android.test.mock {
public deprecated class MockAccountManager {
method public static android.accounts.AccountManager newMockAccountManager(android.content.Context);
@Deprecated public class MockAccountManager {
method @Deprecated public static android.accounts.AccountManager newMockAccountManager(android.content.Context);
}
public deprecated class MockApplication extends android.app.Application {
ctor public MockApplication();
@Deprecated public class MockApplication extends android.app.Application {
ctor @Deprecated public MockApplication();
}
public class MockContentProvider extends android.content.ContentProvider {
ctor protected MockContentProvider();
ctor public MockContentProvider(android.content.Context);
ctor public MockContentProvider(android.content.Context, java.lang.String, java.lang.String, android.content.pm.PathPermission[]);
ctor public MockContentProvider(android.content.Context, String, String, android.content.pm.PathPermission[]);
method public android.content.ContentProviderResult[] applyBatch(java.util.ArrayList<android.content.ContentProviderOperation>);
method public static deprecated void attachInfoForTesting(android.content.ContentProvider, android.content.Context, android.content.pm.ProviderInfo);
method public int delete(android.net.Uri, java.lang.String, java.lang.String[]);
method public java.lang.String getType(android.net.Uri);
method @Deprecated public static void attachInfoForTesting(android.content.ContentProvider, android.content.Context, android.content.pm.ProviderInfo);
method public int delete(android.net.Uri, String, String[]);
method public String getType(android.net.Uri);
method public android.net.Uri insert(android.net.Uri, android.content.ContentValues);
method public boolean onCreate();
method public android.content.res.AssetFileDescriptor openTypedAssetFile(android.net.Uri, java.lang.String, android.os.Bundle);
method public android.database.Cursor query(android.net.Uri, java.lang.String[], java.lang.String, java.lang.String[], java.lang.String);
method public int update(android.net.Uri, android.content.ContentValues, java.lang.String, java.lang.String[]);
method public android.content.res.AssetFileDescriptor openTypedAssetFile(android.net.Uri, String, android.os.Bundle);
method public android.database.Cursor query(android.net.Uri, String[], String, String[], String);
method public int update(android.net.Uri, android.content.ContentValues, String, String[]);
}
public class MockContentResolver extends android.content.ContentResolver {
ctor public MockContentResolver();
ctor public MockContentResolver(android.content.Context);
method public void addProvider(java.lang.String, android.content.ContentProvider);
method public void addProvider(String, android.content.ContentProvider);
}
public class MockContext extends android.content.Context {
ctor public MockContext();
method public boolean bindService(android.content.Intent, android.content.ServiceConnection, int);
method public int checkCallingOrSelfPermission(java.lang.String);
method public int checkCallingOrSelfPermission(String);
method public int checkCallingOrSelfUriPermission(android.net.Uri, int);
method public int checkCallingPermission(java.lang.String);
method public int checkCallingPermission(String);
method public int checkCallingUriPermission(android.net.Uri, int);
method public int checkPermission(java.lang.String, int, int);
method public int checkSelfPermission(java.lang.String);
method public int checkPermission(String, int, int);
method public int checkSelfPermission(String);
method public int checkUriPermission(android.net.Uri, int, int, int);
method public int checkUriPermission(android.net.Uri, java.lang.String, java.lang.String, int, int, int);
method public int checkUriPermission(android.net.Uri, String, String, int, int, int);
method public void clearWallpaper();
method public android.content.Context createConfigurationContext(android.content.res.Configuration);
method public android.content.Context createContextForSplit(java.lang.String) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.content.Context createContextForSplit(String) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.content.Context createDeviceProtectedStorageContext();
method public android.content.Context createDisplayContext(android.view.Display);
method public android.content.Context createPackageContext(java.lang.String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public java.lang.String[] databaseList();
method public boolean deleteDatabase(java.lang.String);
method public boolean deleteFile(java.lang.String);
method public boolean deleteSharedPreferences(java.lang.String);
method public void enforceCallingOrSelfPermission(java.lang.String, java.lang.String);
method public void enforceCallingOrSelfUriPermission(android.net.Uri, int, java.lang.String);
method public void enforceCallingPermission(java.lang.String, java.lang.String);
method public void enforceCallingUriPermission(android.net.Uri, int, java.lang.String);
method public void enforcePermission(java.lang.String, int, int, java.lang.String);
method public void enforceUriPermission(android.net.Uri, int, int, int, java.lang.String);
method public void enforceUriPermission(android.net.Uri, java.lang.String, java.lang.String, int, int, int, java.lang.String);
method public java.lang.String[] fileList();
method public android.content.Context createPackageContext(String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public String[] databaseList();
method public boolean deleteDatabase(String);
method public boolean deleteFile(String);
method public boolean deleteSharedPreferences(String);
method public void enforceCallingOrSelfPermission(String, String);
method public void enforceCallingOrSelfUriPermission(android.net.Uri, int, String);
method public void enforceCallingPermission(String, String);
method public void enforceCallingUriPermission(android.net.Uri, int, String);
method public void enforcePermission(String, int, int, String);
method public void enforceUriPermission(android.net.Uri, int, int, int, String);
method public void enforceUriPermission(android.net.Uri, String, String, int, int, int, String);
method public String[] fileList();
method public android.content.Context getApplicationContext();
method public android.content.pm.ApplicationInfo getApplicationInfo();
method public android.content.res.AssetManager getAssets();
method public java.io.File getCacheDir();
method public java.lang.ClassLoader getClassLoader();
method public ClassLoader getClassLoader();
method public java.io.File getCodeCacheDir();
method public android.content.ContentResolver getContentResolver();
method public java.io.File getDataDir();
method public java.io.File getDatabasePath(java.lang.String);
method public java.io.File getDir(java.lang.String, int);
method public java.io.File getDatabasePath(String);
method public java.io.File getDir(String, int);
method public java.io.File getExternalCacheDir();
method public java.io.File[] getExternalCacheDirs();
method public java.io.File getExternalFilesDir(java.lang.String);
method public java.io.File[] getExternalFilesDirs(java.lang.String);
method public java.io.File getExternalFilesDir(String);
method public java.io.File[] getExternalFilesDirs(String);
method public java.io.File[] getExternalMediaDirs();
method public java.io.File getFileStreamPath(java.lang.String);
method public java.io.File getFileStreamPath(String);
method public java.io.File getFilesDir();
method public android.os.Looper getMainLooper();
method public java.io.File getNoBackupFilesDir();
method public java.io.File getObbDir();
method public java.io.File[] getObbDirs();
method public java.lang.String getPackageCodePath();
method public String getPackageCodePath();
method public android.content.pm.PackageManager getPackageManager();
method public java.lang.String getPackageName();
method public java.lang.String getPackageResourcePath();
method public String getPackageName();
method public String getPackageResourcePath();
method public android.content.res.Resources getResources();
method public android.content.SharedPreferences getSharedPreferences(java.lang.String, int);
method public java.lang.Object getSystemService(java.lang.String);
method public java.lang.String getSystemServiceName(java.lang.Class<?>);
method public android.content.SharedPreferences getSharedPreferences(String, int);
method public Object getSystemService(String);
method public String getSystemServiceName(Class<?>);
method public android.content.res.Resources.Theme getTheme();
method public android.graphics.drawable.Drawable getWallpaper();
method public int getWallpaperDesiredMinimumHeight();
method public int getWallpaperDesiredMinimumWidth();
method public void grantUriPermission(java.lang.String, android.net.Uri, int);
method public void grantUriPermission(String, android.net.Uri, int);
method public boolean isDeviceProtectedStorage();
method public boolean moveDatabaseFrom(android.content.Context, java.lang.String);
method public boolean moveSharedPreferencesFrom(android.content.Context, java.lang.String);
method public java.io.FileInputStream openFileInput(java.lang.String) throws java.io.FileNotFoundException;
method public java.io.FileOutputStream openFileOutput(java.lang.String, int) throws java.io.FileNotFoundException;
method public android.database.sqlite.SQLiteDatabase openOrCreateDatabase(java.lang.String, int, android.database.sqlite.SQLiteDatabase.CursorFactory);
method public android.database.sqlite.SQLiteDatabase openOrCreateDatabase(java.lang.String, int, android.database.sqlite.SQLiteDatabase.CursorFactory, android.database.DatabaseErrorHandler);
method public boolean moveDatabaseFrom(android.content.Context, String);
method public boolean moveSharedPreferencesFrom(android.content.Context, String);
method public java.io.FileInputStream openFileInput(String) throws java.io.FileNotFoundException;
method public java.io.FileOutputStream openFileOutput(String, int) throws java.io.FileNotFoundException;
method public android.database.sqlite.SQLiteDatabase openOrCreateDatabase(String, int, android.database.sqlite.SQLiteDatabase.CursorFactory);
method public android.database.sqlite.SQLiteDatabase openOrCreateDatabase(String, int, android.database.sqlite.SQLiteDatabase.CursorFactory, android.database.DatabaseErrorHandler);
method public android.graphics.drawable.Drawable peekWallpaper();
method public android.content.Intent registerReceiver(android.content.BroadcastReceiver, android.content.IntentFilter);
method public android.content.Intent registerReceiver(android.content.BroadcastReceiver, android.content.IntentFilter, int);
method public android.content.Intent registerReceiver(android.content.BroadcastReceiver, android.content.IntentFilter, java.lang.String, android.os.Handler);
method public android.content.Intent registerReceiver(android.content.BroadcastReceiver, android.content.IntentFilter, java.lang.String, android.os.Handler, int);
method public android.content.Intent registerReceiver(android.content.BroadcastReceiver, android.content.IntentFilter, String, android.os.Handler);
method public android.content.Intent registerReceiver(android.content.BroadcastReceiver, android.content.IntentFilter, String, android.os.Handler, int);
method public void removeStickyBroadcast(android.content.Intent);
method public void removeStickyBroadcastAsUser(android.content.Intent, android.os.UserHandle);
method public void revokeUriPermission(android.net.Uri, int);
method public void revokeUriPermission(java.lang.String, android.net.Uri, int);
method public void revokeUriPermission(String, android.net.Uri, int);
method public void sendBroadcast(android.content.Intent);
method public void sendBroadcast(android.content.Intent, java.lang.String);
method public void sendBroadcast(android.content.Intent, String);
method public void sendBroadcastAsUser(android.content.Intent, android.os.UserHandle);
method public void sendBroadcastAsUser(android.content.Intent, android.os.UserHandle, java.lang.String);
method public void sendOrderedBroadcast(android.content.Intent, java.lang.String);
method public void sendOrderedBroadcast(android.content.Intent, java.lang.String, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle);
method public void sendOrderedBroadcastAsUser(android.content.Intent, android.os.UserHandle, java.lang.String, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle);
method public void sendBroadcastAsUser(android.content.Intent, android.os.UserHandle, String);
method public void sendOrderedBroadcast(android.content.Intent, String);
method public void sendOrderedBroadcast(android.content.Intent, String, android.content.BroadcastReceiver, android.os.Handler, int, String, android.os.Bundle);
method public void sendOrderedBroadcastAsUser(android.content.Intent, android.os.UserHandle, String, android.content.BroadcastReceiver, android.os.Handler, int, String, android.os.Bundle);
method public void sendStickyBroadcast(android.content.Intent);
method public void sendStickyBroadcastAsUser(android.content.Intent, android.os.UserHandle);
method public void sendStickyOrderedBroadcast(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle);
method public void sendStickyOrderedBroadcastAsUser(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle);
method public void sendStickyOrderedBroadcast(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, String, android.os.Bundle);
method public void sendStickyOrderedBroadcastAsUser(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, String, android.os.Bundle);
method public void setTheme(int);
method public void setWallpaper(android.graphics.Bitmap) throws java.io.IOException;
method public void setWallpaper(java.io.InputStream) throws java.io.IOException;
@@ -127,7 +128,7 @@ package android.test.mock {
method public void startActivity(android.content.Intent);
method public void startActivity(android.content.Intent, android.os.Bundle);
method public android.content.ComponentName startForegroundService(android.content.Intent);
method public boolean startInstrumentation(android.content.ComponentName, java.lang.String, android.os.Bundle);
method public boolean startInstrumentation(android.content.ComponentName, String, android.os.Bundle);
method public void startIntentSender(android.content.IntentSender, android.content.Intent, int, int, int) throws android.content.IntentSender.SendIntentException;
method public void startIntentSender(android.content.IntentSender, android.content.Intent, int, int, int, android.os.Bundle) throws android.content.IntentSender.SendIntentException;
method public android.content.ComponentName startService(android.content.Intent);
@@ -136,167 +137,167 @@ package android.test.mock {
method public void unregisterReceiver(android.content.BroadcastReceiver);
}
public deprecated class MockCursor implements android.database.Cursor {
ctor public MockCursor();
method public void close();
method public void copyStringToBuffer(int, android.database.CharArrayBuffer);
method public deprecated void deactivate();
method public byte[] getBlob(int);
method public int getColumnCount();
method public int getColumnIndex(java.lang.String);
method public int getColumnIndexOrThrow(java.lang.String);
method public java.lang.String getColumnName(int);
method public java.lang.String[] getColumnNames();
method public int getCount();
method public double getDouble(int);
method public android.os.Bundle getExtras();
method public float getFloat(int);
method public int getInt(int);
method public long getLong(int);
method public android.net.Uri getNotificationUri();
method public int getPosition();
method public short getShort(int);
method public java.lang.String getString(int);
method public int getType(int);
method public boolean getWantsAllOnMoveCalls();
method public boolean isAfterLast();
method public boolean isBeforeFirst();
method public boolean isClosed();
method public boolean isFirst();
method public boolean isLast();
method public boolean isNull(int);
method public boolean move(int);
method public boolean moveToFirst();
method public boolean moveToLast();
method public boolean moveToNext();
method public boolean moveToPosition(int);
method public boolean moveToPrevious();
method public void registerContentObserver(android.database.ContentObserver);
method public void registerDataSetObserver(android.database.DataSetObserver);
method public deprecated boolean requery();
method public android.os.Bundle respond(android.os.Bundle);
method public void setExtras(android.os.Bundle);
method public void setNotificationUri(android.content.ContentResolver, android.net.Uri);
method public void unregisterContentObserver(android.database.ContentObserver);
method public void unregisterDataSetObserver(android.database.DataSetObserver);
@Deprecated public class MockCursor implements android.database.Cursor {
ctor @Deprecated public MockCursor();
method @Deprecated public void close();
method @Deprecated public void copyStringToBuffer(int, android.database.CharArrayBuffer);
method @Deprecated public void deactivate();
method @Deprecated public byte[] getBlob(int);
method @Deprecated public int getColumnCount();
method @Deprecated public int getColumnIndex(String);
method @Deprecated public int getColumnIndexOrThrow(String);
method @Deprecated public String getColumnName(int);
method @Deprecated public String[] getColumnNames();
method @Deprecated public int getCount();
method @Deprecated public double getDouble(int);
method @Deprecated public android.os.Bundle getExtras();
method @Deprecated public float getFloat(int);
method @Deprecated public int getInt(int);
method @Deprecated public long getLong(int);
method @Deprecated public android.net.Uri getNotificationUri();
method @Deprecated public int getPosition();
method @Deprecated public short getShort(int);
method @Deprecated public String getString(int);
method @Deprecated public int getType(int);
method @Deprecated public boolean getWantsAllOnMoveCalls();
method @Deprecated public boolean isAfterLast();
method @Deprecated public boolean isBeforeFirst();
method @Deprecated public boolean isClosed();
method @Deprecated public boolean isFirst();
method @Deprecated public boolean isLast();
method @Deprecated public boolean isNull(int);
method @Deprecated public boolean move(int);
method @Deprecated public boolean moveToFirst();
method @Deprecated public boolean moveToLast();
method @Deprecated public boolean moveToNext();
method @Deprecated public boolean moveToPosition(int);
method @Deprecated public boolean moveToPrevious();
method @Deprecated public void registerContentObserver(android.database.ContentObserver);
method @Deprecated public void registerDataSetObserver(android.database.DataSetObserver);
method @Deprecated public boolean requery();
method @Deprecated public android.os.Bundle respond(android.os.Bundle);
method @Deprecated public void setExtras(android.os.Bundle);
method @Deprecated public void setNotificationUri(android.content.ContentResolver, android.net.Uri);
method @Deprecated public void unregisterContentObserver(android.database.ContentObserver);
method @Deprecated public void unregisterDataSetObserver(android.database.DataSetObserver);
}
public deprecated class MockDialogInterface implements android.content.DialogInterface {
ctor public MockDialogInterface();
method public void cancel();
method public void dismiss();
@Deprecated public class MockDialogInterface implements android.content.DialogInterface {
ctor @Deprecated public MockDialogInterface();
method @Deprecated public void cancel();
method @Deprecated public void dismiss();
}
public deprecated class MockPackageManager extends android.content.pm.PackageManager {
ctor public MockPackageManager();
method public void addPackageToPreferred(java.lang.String);
method public boolean addPermission(android.content.pm.PermissionInfo);
method public boolean addPermissionAsync(android.content.pm.PermissionInfo);
method public void addPreferredActivity(android.content.IntentFilter, int, android.content.ComponentName[], android.content.ComponentName);
method public boolean canRequestPackageInstalls();
method public java.lang.String[] canonicalToCurrentPackageNames(java.lang.String[]);
method public int checkPermission(java.lang.String, java.lang.String);
method public int checkSignatures(java.lang.String, java.lang.String);
method public int checkSignatures(int, int);
@Deprecated public class MockPackageManager extends android.content.pm.PackageManager {
ctor @Deprecated public MockPackageManager();
method @Deprecated public void addPackageToPreferred(String);
method @Deprecated public boolean addPermission(android.content.pm.PermissionInfo);
method @Deprecated public boolean addPermissionAsync(android.content.pm.PermissionInfo);
method @Deprecated public void addPreferredActivity(android.content.IntentFilter, int, android.content.ComponentName[], android.content.ComponentName);
method @Deprecated public boolean canRequestPackageInstalls();
method @Deprecated public String[] canonicalToCurrentPackageNames(String[]);
method @Deprecated public int checkPermission(String, String);
method @Deprecated public int checkSignatures(String, String);
method @Deprecated public int checkSignatures(int, int);
method public void clearInstantAppCookie();
method public void clearPackagePreferredActivities(java.lang.String);
method public java.lang.String[] currentToCanonicalPackageNames(java.lang.String[]);
method public void extendVerificationTimeout(int, int, long);
method public android.graphics.drawable.Drawable getActivityBanner(android.content.ComponentName) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.graphics.drawable.Drawable getActivityBanner(android.content.Intent) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.graphics.drawable.Drawable getActivityIcon(android.content.ComponentName) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.graphics.drawable.Drawable getActivityIcon(android.content.Intent) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.content.pm.ActivityInfo getActivityInfo(android.content.ComponentName, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.graphics.drawable.Drawable getActivityLogo(android.content.ComponentName) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.graphics.drawable.Drawable getActivityLogo(android.content.Intent) throws android.content.pm.PackageManager.NameNotFoundException;
method public java.util.List<android.content.IntentFilter> getAllIntentFilters(java.lang.String);
method public java.util.List<android.content.pm.PermissionGroupInfo> getAllPermissionGroups(int);
method public android.graphics.drawable.Drawable getApplicationBanner(android.content.pm.ApplicationInfo);
method public android.graphics.drawable.Drawable getApplicationBanner(java.lang.String) throws android.content.pm.PackageManager.NameNotFoundException;
method public int getApplicationEnabledSetting(java.lang.String);
method public android.graphics.drawable.Drawable getApplicationIcon(android.content.pm.ApplicationInfo);
method public android.graphics.drawable.Drawable getApplicationIcon(java.lang.String) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.content.pm.ApplicationInfo getApplicationInfo(java.lang.String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public java.lang.CharSequence getApplicationLabel(android.content.pm.ApplicationInfo);
method public android.graphics.drawable.Drawable getApplicationLogo(android.content.pm.ApplicationInfo);
method public android.graphics.drawable.Drawable getApplicationLogo(java.lang.String) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public void clearPackagePreferredActivities(String);
method @Deprecated public String[] currentToCanonicalPackageNames(String[]);
method @Deprecated public void extendVerificationTimeout(int, int, long);
method @Deprecated public android.graphics.drawable.Drawable getActivityBanner(android.content.ComponentName) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.graphics.drawable.Drawable getActivityBanner(android.content.Intent) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.graphics.drawable.Drawable getActivityIcon(android.content.ComponentName) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.graphics.drawable.Drawable getActivityIcon(android.content.Intent) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.content.pm.ActivityInfo getActivityInfo(android.content.ComponentName, int) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.graphics.drawable.Drawable getActivityLogo(android.content.ComponentName) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.graphics.drawable.Drawable getActivityLogo(android.content.Intent) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public java.util.List<android.content.IntentFilter> getAllIntentFilters(String);
method @Deprecated public java.util.List<android.content.pm.PermissionGroupInfo> getAllPermissionGroups(int);
method @Deprecated public android.graphics.drawable.Drawable getApplicationBanner(android.content.pm.ApplicationInfo);
method @Deprecated public android.graphics.drawable.Drawable getApplicationBanner(String) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public int getApplicationEnabledSetting(String);
method @Deprecated public android.graphics.drawable.Drawable getApplicationIcon(android.content.pm.ApplicationInfo);
method @Deprecated public android.graphics.drawable.Drawable getApplicationIcon(String) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.content.pm.ApplicationInfo getApplicationInfo(String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public CharSequence getApplicationLabel(android.content.pm.ApplicationInfo);
method @Deprecated public android.graphics.drawable.Drawable getApplicationLogo(android.content.pm.ApplicationInfo);
method @Deprecated public android.graphics.drawable.Drawable getApplicationLogo(String) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.content.pm.ChangedPackages getChangedPackages(int);
method public int getComponentEnabledSetting(android.content.ComponentName);
method public android.graphics.drawable.Drawable getDefaultActivityIcon();
method public android.graphics.drawable.Drawable getDrawable(java.lang.String, int, android.content.pm.ApplicationInfo);
method public java.util.List<android.content.pm.ApplicationInfo> getInstalledApplications(int);
method public java.util.List<android.content.pm.PackageInfo> getInstalledPackages(int);
method public java.lang.String getInstallerPackageName(java.lang.String);
method @Deprecated public int getComponentEnabledSetting(android.content.ComponentName);
method @Deprecated public android.graphics.drawable.Drawable getDefaultActivityIcon();
method @Deprecated public android.graphics.drawable.Drawable getDrawable(String, int, android.content.pm.ApplicationInfo);
method @Deprecated public java.util.List<android.content.pm.ApplicationInfo> getInstalledApplications(int);
method @Deprecated public java.util.List<android.content.pm.PackageInfo> getInstalledPackages(int);
method @Deprecated public String getInstallerPackageName(String);
method public byte[] getInstantAppCookie();
method public int getInstantAppCookieMaxBytes();
method public android.content.pm.InstrumentationInfo getInstrumentationInfo(android.content.ComponentName, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.content.Intent getLaunchIntentForPackage(java.lang.String);
method public android.content.Intent getLeanbackLaunchIntentForPackage(java.lang.String);
method public java.lang.String getNameForUid(int);
method public int[] getPackageGids(java.lang.String) throws android.content.pm.PackageManager.NameNotFoundException;
method public int[] getPackageGids(java.lang.String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.content.pm.PackageInfo getPackageInfo(java.lang.String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.content.pm.PackageInfo getPackageInfo(android.content.pm.VersionedPackage, int) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.content.pm.InstrumentationInfo getInstrumentationInfo(android.content.ComponentName, int) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.content.Intent getLaunchIntentForPackage(String);
method @Deprecated public android.content.Intent getLeanbackLaunchIntentForPackage(String);
method @Deprecated public String getNameForUid(int);
method @Deprecated public int[] getPackageGids(String) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public int[] getPackageGids(String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.content.pm.PackageInfo getPackageInfo(String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.content.pm.PackageInfo getPackageInfo(android.content.pm.VersionedPackage, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.content.pm.PackageInstaller getPackageInstaller();
method public int getPackageUid(java.lang.String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public java.lang.String[] getPackagesForUid(int);
method public java.util.List<android.content.pm.PackageInfo> getPackagesHoldingPermissions(java.lang.String[], int);
method public android.content.pm.PermissionGroupInfo getPermissionGroupInfo(java.lang.String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.content.pm.PermissionInfo getPermissionInfo(java.lang.String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public int getPreferredActivities(java.util.List<android.content.IntentFilter>, java.util.List<android.content.ComponentName>, java.lang.String);
method public java.util.List<android.content.pm.PackageInfo> getPreferredPackages(int);
method public android.content.pm.ProviderInfo getProviderInfo(android.content.ComponentName, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.content.pm.ActivityInfo getReceiverInfo(android.content.ComponentName, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.content.res.Resources getResourcesForActivity(android.content.ComponentName) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.content.res.Resources getResourcesForApplication(android.content.pm.ApplicationInfo);
method public android.content.res.Resources getResourcesForApplication(java.lang.String) throws android.content.pm.PackageManager.NameNotFoundException;
method public android.content.pm.ServiceInfo getServiceInfo(android.content.ComponentName, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public java.util.List<android.content.pm.SharedLibraryInfo> getSharedLibraries(int);
method public android.content.pm.FeatureInfo[] getSystemAvailableFeatures();
method public java.lang.String[] getSystemSharedLibraryNames();
method public java.lang.CharSequence getText(java.lang.String, int, android.content.pm.ApplicationInfo);
method public android.graphics.drawable.Drawable getUserBadgedDrawableForDensity(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int);
method public android.graphics.drawable.Drawable getUserBadgedIcon(android.graphics.drawable.Drawable, android.os.UserHandle);
method public java.lang.CharSequence getUserBadgedLabel(java.lang.CharSequence, android.os.UserHandle);
method public android.content.res.XmlResourceParser getXml(java.lang.String, int, android.content.pm.ApplicationInfo);
method public boolean hasSystemFeature(java.lang.String);
method public boolean hasSystemFeature(java.lang.String, int);
method @Deprecated public int getPackageUid(String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public String[] getPackagesForUid(int);
method @Deprecated public java.util.List<android.content.pm.PackageInfo> getPackagesHoldingPermissions(String[], int);
method @Deprecated public android.content.pm.PermissionGroupInfo getPermissionGroupInfo(String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.content.pm.PermissionInfo getPermissionInfo(String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public int getPreferredActivities(java.util.List<android.content.IntentFilter>, java.util.List<android.content.ComponentName>, String);
method @Deprecated public java.util.List<android.content.pm.PackageInfo> getPreferredPackages(int);
method @Deprecated public android.content.pm.ProviderInfo getProviderInfo(android.content.ComponentName, int) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.content.pm.ActivityInfo getReceiverInfo(android.content.ComponentName, int) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.content.res.Resources getResourcesForActivity(android.content.ComponentName) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.content.res.Resources getResourcesForApplication(android.content.pm.ApplicationInfo);
method @Deprecated public android.content.res.Resources getResourcesForApplication(String) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public android.content.pm.ServiceInfo getServiceInfo(android.content.ComponentName, int) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated @NonNull public java.util.List<android.content.pm.SharedLibraryInfo> getSharedLibraries(int);
method @Deprecated public android.content.pm.FeatureInfo[] getSystemAvailableFeatures();
method @Deprecated public String[] getSystemSharedLibraryNames();
method @Deprecated public CharSequence getText(String, int, android.content.pm.ApplicationInfo);
method @Deprecated public android.graphics.drawable.Drawable getUserBadgedDrawableForDensity(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int);
method @Deprecated public android.graphics.drawable.Drawable getUserBadgedIcon(android.graphics.drawable.Drawable, android.os.UserHandle);
method @Deprecated public CharSequence getUserBadgedLabel(CharSequence, android.os.UserHandle);
method @Deprecated public android.content.res.XmlResourceParser getXml(String, int, android.content.pm.ApplicationInfo);
method @Deprecated public boolean hasSystemFeature(String);
method @Deprecated public boolean hasSystemFeature(String, int);
method public boolean isInstantApp();
method public boolean isInstantApp(java.lang.String);
method public boolean isPermissionRevokedByPolicy(java.lang.String, java.lang.String);
method public boolean isSafeMode();
method public java.util.List<android.content.pm.ResolveInfo> queryBroadcastReceivers(android.content.Intent, int);
method public java.util.List<android.content.pm.ProviderInfo> queryContentProviders(java.lang.String, int, int);
method public java.util.List<android.content.pm.InstrumentationInfo> queryInstrumentation(java.lang.String, int);
method public java.util.List<android.content.pm.ResolveInfo> queryIntentActivities(android.content.Intent, int);
method public java.util.List<android.content.pm.ResolveInfo> queryIntentActivityOptions(android.content.ComponentName, android.content.Intent[], android.content.Intent, int);
method public java.util.List<android.content.pm.ResolveInfo> queryIntentContentProviders(android.content.Intent, int);
method public java.util.List<android.content.pm.ResolveInfo> queryIntentServices(android.content.Intent, int);
method public java.util.List<android.content.pm.PermissionInfo> queryPermissionsByGroup(java.lang.String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public void removePackageFromPreferred(java.lang.String);
method public void removePermission(java.lang.String);
method public android.content.pm.ResolveInfo resolveActivity(android.content.Intent, int);
method public android.content.pm.ProviderInfo resolveContentProvider(java.lang.String, int);
method public android.content.pm.ResolveInfo resolveService(android.content.Intent, int);
method public android.content.pm.ResolveInfo resolveServiceAsUser(android.content.Intent, int, int);
method public void setApplicationCategoryHint(java.lang.String, int);
method public void setApplicationEnabledSetting(java.lang.String, int, int);
method public void setComponentEnabledSetting(android.content.ComponentName, int, int);
method public void setInstallerPackageName(java.lang.String, java.lang.String);
method public void updateInstantAppCookie(byte[]);
method public void verifyPendingInstall(int, int);
method public boolean isInstantApp(String);
method @Deprecated public boolean isPermissionRevokedByPolicy(String, String);
method @Deprecated public boolean isSafeMode();
method @Deprecated public java.util.List<android.content.pm.ResolveInfo> queryBroadcastReceivers(android.content.Intent, int);
method @Deprecated public java.util.List<android.content.pm.ProviderInfo> queryContentProviders(String, int, int);
method @Deprecated public java.util.List<android.content.pm.InstrumentationInfo> queryInstrumentation(String, int);
method @Deprecated public java.util.List<android.content.pm.ResolveInfo> queryIntentActivities(android.content.Intent, int);
method @Deprecated public java.util.List<android.content.pm.ResolveInfo> queryIntentActivityOptions(android.content.ComponentName, android.content.Intent[], android.content.Intent, int);
method @Deprecated public java.util.List<android.content.pm.ResolveInfo> queryIntentContentProviders(android.content.Intent, int);
method @Deprecated public java.util.List<android.content.pm.ResolveInfo> queryIntentServices(android.content.Intent, int);
method @Deprecated public java.util.List<android.content.pm.PermissionInfo> queryPermissionsByGroup(String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method @Deprecated public void removePackageFromPreferred(String);
method @Deprecated public void removePermission(String);
method @Deprecated public android.content.pm.ResolveInfo resolveActivity(android.content.Intent, int);
method @Deprecated public android.content.pm.ProviderInfo resolveContentProvider(String, int);
method @Deprecated public android.content.pm.ResolveInfo resolveService(android.content.Intent, int);
method @Deprecated public android.content.pm.ResolveInfo resolveServiceAsUser(android.content.Intent, int, int);
method public void setApplicationCategoryHint(String, int);
method @Deprecated public void setApplicationEnabledSetting(String, int, int);
method @Deprecated public void setComponentEnabledSetting(android.content.ComponentName, int, int);
method @Deprecated public void setInstallerPackageName(String, String);
method public void updateInstantAppCookie(@NonNull byte[]);
method @Deprecated public void verifyPendingInstall(int, int);
}
public deprecated class MockResources extends android.content.res.Resources {
ctor public MockResources();
method public int getColor(int) throws android.content.res.Resources.NotFoundException;
method public android.content.res.ColorStateList getColorStateList(int) throws android.content.res.Resources.NotFoundException;
method public android.graphics.drawable.Drawable getDrawable(int) throws android.content.res.Resources.NotFoundException;
method public void updateConfiguration(android.content.res.Configuration, android.util.DisplayMetrics);
@Deprecated public class MockResources extends android.content.res.Resources {
ctor @Deprecated public MockResources();
method @Deprecated public int getColor(int) throws android.content.res.Resources.NotFoundException;
method @Deprecated public android.content.res.ColorStateList getColorStateList(int) throws android.content.res.Resources.NotFoundException;
method @Deprecated public android.graphics.drawable.Drawable getDrawable(int) throws android.content.res.Resources.NotFoundException;
method @Deprecated public void updateConfiguration(android.content.res.Configuration, android.util.DisplayMetrics);
}
public deprecated class MockService {
method public static <T extends android.app.Service> void attachForTesting(android.app.Service, android.content.Context, java.lang.String, android.app.Application);
@Deprecated public class MockService {
method @Deprecated public static <T extends android.app.Service> void attachForTesting(android.app.Service, android.content.Context, String, android.app.Application);
}
}

View File

@@ -1,14 +1,15 @@
// Signature format: 2.0
package android.test.mock {
public class MockContext extends android.content.Context {
method public android.content.SharedPreferences getSharedPreferences(java.io.File, int);
method public java.io.File getSharedPreferencesPath(java.lang.String);
method public java.io.File getSharedPreferencesPath(String);
}
public deprecated class MockPackageManager extends android.content.pm.PackageManager {
method public deprecated java.lang.String getDefaultBrowserPackageName(int);
method public deprecated boolean setDefaultBrowserPackageName(java.lang.String, int);
method public boolean setInstantAppCookie(byte[]);
@Deprecated public class MockPackageManager extends android.content.pm.PackageManager {
method @Deprecated public String getDefaultBrowserPackageName(int);
method @Deprecated public boolean setDefaultBrowserPackageName(String, int);
method public boolean setInstantAppCookie(@NonNull byte[]);
}
}

View File

@@ -1,36 +1,37 @@
// Signature format: 2.0
package android.test.mock {
public class MockContext extends android.content.Context {
method public android.content.Context createCredentialProtectedStorageContext();
method public java.io.File getPreloadsFileCache();
method public boolean isCredentialProtectedStorage();
method public void sendBroadcast(android.content.Intent, java.lang.String, android.os.Bundle);
method public void sendBroadcastAsUser(android.content.Intent, android.os.UserHandle, java.lang.String, android.os.Bundle);
method public void sendOrderedBroadcast(android.content.Intent, java.lang.String, android.os.Bundle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle);
method public void sendBroadcast(android.content.Intent, String, android.os.Bundle);
method public void sendBroadcastAsUser(android.content.Intent, android.os.UserHandle, String, android.os.Bundle);
method public void sendOrderedBroadcast(android.content.Intent, String, android.os.Bundle, android.content.BroadcastReceiver, android.os.Handler, int, String, android.os.Bundle);
}
public deprecated class MockPackageManager extends android.content.pm.PackageManager {
@Deprecated public class MockPackageManager extends android.content.pm.PackageManager {
method public void addOnPermissionsChangeListener(android.content.pm.PackageManager.OnPermissionsChangedListener);
method public java.util.List<android.content.IntentFilter> getAllIntentFilters(java.lang.String);
method public java.lang.String getDefaultBrowserPackageNameAsUser(int);
method @Deprecated public java.util.List<android.content.IntentFilter> getAllIntentFilters(String);
method public String getDefaultBrowserPackageNameAsUser(int);
method public java.util.List<android.content.pm.PackageInfo> getInstalledPackagesAsUser(int, int);
method public android.graphics.drawable.Drawable getInstantAppIcon(java.lang.String);
method public android.graphics.drawable.Drawable getInstantAppIcon(String);
method public android.content.ComponentName getInstantAppInstallerComponent();
method public android.content.ComponentName getInstantAppResolverSettingsComponent();
method public java.util.List<android.content.pm.InstantAppInfo> getInstantApps();
method public java.util.List<android.content.pm.IntentFilterVerificationInfo> getIntentFilterVerifications(java.lang.String);
method public int getIntentVerificationStatusAsUser(java.lang.String, int);
method public int getPermissionFlags(java.lang.String, java.lang.String, android.os.UserHandle);
method public void grantRuntimePermission(java.lang.String, java.lang.String, android.os.UserHandle);
method public int installExistingPackage(java.lang.String) throws android.content.pm.PackageManager.NameNotFoundException;
method public int installExistingPackage(java.lang.String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public void registerDexModule(java.lang.String, android.content.pm.PackageManager.DexModuleRegisterCallback);
method public java.util.List<android.content.pm.IntentFilterVerificationInfo> getIntentFilterVerifications(String);
method public int getIntentVerificationStatusAsUser(String, int);
method public int getPermissionFlags(String, String, android.os.UserHandle);
method public void grantRuntimePermission(String, String, android.os.UserHandle);
method public int installExistingPackage(String) throws android.content.pm.PackageManager.NameNotFoundException;
method public int installExistingPackage(String, int) throws android.content.pm.PackageManager.NameNotFoundException;
method public void registerDexModule(String, @Nullable android.content.pm.PackageManager.DexModuleRegisterCallback);
method public void removeOnPermissionsChangeListener(android.content.pm.PackageManager.OnPermissionsChangedListener);
method public void revokeRuntimePermission(java.lang.String, java.lang.String, android.os.UserHandle);
method public boolean setDefaultBrowserPackageNameAsUser(java.lang.String, int);
method public void setUpdateAvailable(java.lang.String, boolean);
method public boolean updateIntentVerificationStatusAsUser(java.lang.String, int, int);
method public void updatePermissionFlags(java.lang.String, java.lang.String, int, int, android.os.UserHandle);
method public void revokeRuntimePermission(String, String, android.os.UserHandle);
method public boolean setDefaultBrowserPackageNameAsUser(String, int);
method public void setUpdateAvailable(String, boolean);
method public boolean updateIntentVerificationStatusAsUser(String, int, int);
method public void updatePermissionFlags(String, String, int, int, android.os.UserHandle);
method public void verifyIntentFilter(int, int, java.util.List<java.lang.String>);
}

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -1,14 +1,15 @@
// Signature format: 2.0
package android.test.mock {
public deprecated class MockPackageManager extends android.content.pm.PackageManager {
method public java.lang.String getDefaultBrowserPackageNameAsUser(int);
method public int getInstallReason(java.lang.String, android.os.UserHandle);
@Deprecated public class MockPackageManager extends android.content.pm.PackageManager {
method public String getDefaultBrowserPackageNameAsUser(int);
method public int getInstallReason(String, android.os.UserHandle);
method public java.util.List<android.content.pm.ApplicationInfo> getInstalledApplicationsAsUser(int, int);
method public java.util.List<android.content.pm.PackageInfo> getInstalledPackagesAsUser(int, int);
method public java.lang.String[] getNamesForUids(int[]);
method public java.lang.String getPermissionControllerPackageName();
method public java.lang.String getServicesSystemSharedLibraryPackageName();
method public java.lang.String getSharedSystemSharedLibraryPackageName();
method public String[] getNamesForUids(int[]);
method public String getPermissionControllerPackageName();
method @NonNull public String getServicesSystemSharedLibraryPackageName();
method @NonNull public String getSharedSystemSharedLibraryPackageName();
method public boolean isPermissionReviewModeEnabled();
}

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -1,102 +1,103 @@
// Signature format: 2.0
package android.test {
public abstract deprecated class ActivityInstrumentationTestCase<T extends android.app.Activity> extends android.test.ActivityTestCase {
ctor public ActivityInstrumentationTestCase(java.lang.String, java.lang.Class<T>);
ctor public ActivityInstrumentationTestCase(java.lang.String, java.lang.Class<T>, boolean);
method public T getActivity();
method public void testActivityTestCaseSetUpProperly() throws java.lang.Exception;
@Deprecated public abstract class ActivityInstrumentationTestCase<T extends android.app.Activity> extends android.test.ActivityTestCase {
ctor @Deprecated public ActivityInstrumentationTestCase(String, Class<T>);
ctor @Deprecated public ActivityInstrumentationTestCase(String, Class<T>, boolean);
method @Deprecated public T getActivity();
method @Deprecated public void testActivityTestCaseSetUpProperly() throws java.lang.Exception;
}
public abstract deprecated class ActivityInstrumentationTestCase2<T extends android.app.Activity> extends android.test.ActivityTestCase {
ctor public deprecated ActivityInstrumentationTestCase2(java.lang.String, java.lang.Class<T>);
ctor public ActivityInstrumentationTestCase2(java.lang.Class<T>);
method public T getActivity();
method public void setActivityInitialTouchMode(boolean);
method public void setActivityIntent(android.content.Intent);
@Deprecated public abstract class ActivityInstrumentationTestCase2<T extends android.app.Activity> extends android.test.ActivityTestCase {
ctor @Deprecated public ActivityInstrumentationTestCase2(String, Class<T>);
ctor @Deprecated public ActivityInstrumentationTestCase2(Class<T>);
method @Deprecated public T getActivity();
method @Deprecated public void setActivityInitialTouchMode(boolean);
method @Deprecated public void setActivityIntent(android.content.Intent);
}
public abstract deprecated class ActivityTestCase extends android.test.InstrumentationTestCase {
ctor public ActivityTestCase();
method protected android.app.Activity getActivity();
method protected void scrubClass(java.lang.Class<?>) throws java.lang.IllegalAccessException;
method protected void setActivity(android.app.Activity);
@Deprecated public abstract class ActivityTestCase extends android.test.InstrumentationTestCase {
ctor @Deprecated public ActivityTestCase();
method @Deprecated protected android.app.Activity getActivity();
method @Deprecated protected void scrubClass(Class<?>) throws java.lang.IllegalAccessException;
method @Deprecated protected void setActivity(android.app.Activity);
}
public abstract deprecated class ActivityUnitTestCase<T extends android.app.Activity> extends android.test.ActivityTestCase {
ctor public ActivityUnitTestCase(java.lang.Class<T>);
method public T getActivity();
method public int getFinishedActivityRequest();
method public int getRequestedOrientation();
method public android.content.Intent getStartedActivityIntent();
method public int getStartedActivityRequest();
method public boolean isFinishCalled();
method public void setActivityContext(android.content.Context);
method public void setApplication(android.app.Application);
method protected T startActivity(android.content.Intent, android.os.Bundle, java.lang.Object);
@Deprecated public abstract class ActivityUnitTestCase<T extends android.app.Activity> extends android.test.ActivityTestCase {
ctor @Deprecated public ActivityUnitTestCase(Class<T>);
method @Deprecated public T getActivity();
method @Deprecated public int getFinishedActivityRequest();
method @Deprecated public int getRequestedOrientation();
method @Deprecated public android.content.Intent getStartedActivityIntent();
method @Deprecated public int getStartedActivityRequest();
method @Deprecated public boolean isFinishCalled();
method @Deprecated public void setActivityContext(android.content.Context);
method @Deprecated public void setApplication(android.app.Application);
method @Deprecated protected T startActivity(android.content.Intent, android.os.Bundle, Object);
}
public deprecated class AndroidTestRunner extends junit.runner.BaseTestRunner {
ctor public AndroidTestRunner();
method public void addTestListener(junit.framework.TestListener);
method public void clearTestListeners();
method protected junit.framework.TestResult createTestResult();
method public java.util.List<junit.framework.TestCase> getTestCases();
method public java.lang.String getTestClassName();
method public junit.framework.TestResult getTestResult();
method protected java.lang.Class loadSuiteClass(java.lang.String) throws java.lang.ClassNotFoundException;
method protected void runFailed(java.lang.String);
method public void runTest();
method public void runTest(junit.framework.TestResult);
method public void setContext(android.content.Context);
method public deprecated void setInstrumentaiton(android.app.Instrumentation);
method public void setInstrumentation(android.app.Instrumentation);
method public void setTest(junit.framework.Test);
method public void setTestClassName(java.lang.String, java.lang.String);
method public void testEnded(java.lang.String);
method public void testFailed(int, junit.framework.Test, java.lang.Throwable);
method public void testStarted(java.lang.String);
@Deprecated public class AndroidTestRunner extends junit.runner.BaseTestRunner {
ctor @Deprecated public AndroidTestRunner();
method @Deprecated public void addTestListener(junit.framework.TestListener);
method @Deprecated public void clearTestListeners();
method @Deprecated protected junit.framework.TestResult createTestResult();
method @Deprecated public java.util.List<junit.framework.TestCase> getTestCases();
method @Deprecated public String getTestClassName();
method @Deprecated public junit.framework.TestResult getTestResult();
method @Deprecated protected Class loadSuiteClass(String) throws java.lang.ClassNotFoundException;
method @Deprecated protected void runFailed(String);
method @Deprecated public void runTest();
method @Deprecated public void runTest(junit.framework.TestResult);
method @Deprecated public void setContext(android.content.Context);
method @Deprecated public void setInstrumentaiton(android.app.Instrumentation);
method @Deprecated public void setInstrumentation(android.app.Instrumentation);
method @Deprecated public void setTest(junit.framework.Test);
method @Deprecated public void setTestClassName(String, String);
method @Deprecated public void testEnded(String);
method @Deprecated public void testFailed(int, junit.framework.Test, Throwable);
method @Deprecated public void testStarted(String);
}
public abstract deprecated class ApplicationTestCase<T extends android.app.Application> extends android.test.AndroidTestCase {
ctor public ApplicationTestCase(java.lang.Class<T>);
method protected final void createApplication();
method public T getApplication();
method public android.content.Context getSystemContext();
method protected final void terminateApplication();
method public final void testApplicationTestCaseSetUpProperly() throws java.lang.Exception;
@Deprecated public abstract class ApplicationTestCase<T extends android.app.Application> extends android.test.AndroidTestCase {
ctor @Deprecated public ApplicationTestCase(Class<T>);
method @Deprecated protected final void createApplication();
method @Deprecated public T getApplication();
method @Deprecated public android.content.Context getSystemContext();
method @Deprecated protected final void terminateApplication();
method @Deprecated public final void testApplicationTestCaseSetUpProperly() throws java.lang.Exception;
}
public deprecated class AssertionFailedError extends java.lang.Error {
ctor public AssertionFailedError();
ctor public AssertionFailedError(java.lang.String);
@Deprecated public class AssertionFailedError extends java.lang.Error {
ctor @Deprecated public AssertionFailedError();
ctor @Deprecated public AssertionFailedError(String);
}
public deprecated class ComparisonFailure extends android.test.AssertionFailedError {
ctor public ComparisonFailure(java.lang.String, java.lang.String, java.lang.String);
@Deprecated public class ComparisonFailure extends android.test.AssertionFailedError {
ctor @Deprecated public ComparisonFailure(String, String, String);
}
public deprecated class InstrumentationTestRunner extends android.app.Instrumentation implements android.test.TestSuiteProvider {
ctor public InstrumentationTestRunner();
method public junit.framework.TestSuite getAllTests();
method protected android.test.AndroidTestRunner getAndroidTestRunner();
method public android.os.Bundle getArguments();
method public java.lang.ClassLoader getLoader();
method public junit.framework.TestSuite getTestSuite();
field public static final java.lang.String REPORT_KEY_NAME_CLASS = "class";
field public static final java.lang.String REPORT_KEY_NAME_TEST = "test";
field public static final java.lang.String REPORT_KEY_NUM_CURRENT = "current";
field public static final java.lang.String REPORT_KEY_NUM_TOTAL = "numtests";
field public static final java.lang.String REPORT_KEY_STACK = "stack";
field public static final java.lang.String REPORT_VALUE_ID = "InstrumentationTestRunner";
field public static final int REPORT_VALUE_RESULT_ERROR = -1; // 0xffffffff
field public static final int REPORT_VALUE_RESULT_FAILURE = -2; // 0xfffffffe
field public static final int REPORT_VALUE_RESULT_OK = 0; // 0x0
field public static final int REPORT_VALUE_RESULT_START = 1; // 0x1
@Deprecated public class InstrumentationTestRunner extends android.app.Instrumentation implements android.test.TestSuiteProvider {
ctor @Deprecated public InstrumentationTestRunner();
method @Deprecated public junit.framework.TestSuite getAllTests();
method @Deprecated protected android.test.AndroidTestRunner getAndroidTestRunner();
method @Deprecated public android.os.Bundle getArguments();
method @Deprecated public ClassLoader getLoader();
method @Deprecated public junit.framework.TestSuite getTestSuite();
field @Deprecated public static final String REPORT_KEY_NAME_CLASS = "class";
field @Deprecated public static final String REPORT_KEY_NAME_TEST = "test";
field @Deprecated public static final String REPORT_KEY_NUM_CURRENT = "current";
field @Deprecated public static final String REPORT_KEY_NUM_TOTAL = "numtests";
field @Deprecated public static final String REPORT_KEY_STACK = "stack";
field @Deprecated public static final String REPORT_VALUE_ID = "InstrumentationTestRunner";
field @Deprecated public static final int REPORT_VALUE_RESULT_ERROR = -1; // 0xffffffff
field @Deprecated public static final int REPORT_VALUE_RESULT_FAILURE = -2; // 0xfffffffe
field @Deprecated public static final int REPORT_VALUE_RESULT_OK = 0; // 0x0
field @Deprecated public static final int REPORT_VALUE_RESULT_START = 1; // 0x1
}
public deprecated class IsolatedContext extends android.content.ContextWrapper {
ctor public IsolatedContext(android.content.ContentResolver, android.content.Context);
method public java.util.List<android.content.Intent> getAndClearBroadcastIntents();
@Deprecated public class IsolatedContext extends android.content.ContextWrapper {
ctor @Deprecated public IsolatedContext(android.content.ContentResolver, android.content.Context);
method @Deprecated public java.util.List<android.content.Intent> getAndClearBroadcastIntents();
}
public class LoaderTestCase extends android.test.AndroidTestCase {
@@ -104,184 +105,184 @@ package android.test {
method public <T> T getLoaderResultSynchronously(android.content.Loader<T>);
}
public final deprecated class MoreAsserts {
method public static void assertAssignableFrom(java.lang.Class<?>, java.lang.Object);
method public static void assertAssignableFrom(java.lang.Class<?>, java.lang.Class<?>);
method public static java.util.regex.MatchResult assertContainsRegex(java.lang.String, java.lang.String, java.lang.String);
method public static java.util.regex.MatchResult assertContainsRegex(java.lang.String, java.lang.String);
method public static void assertContentsInAnyOrder(java.lang.String, java.lang.Iterable<?>, java.lang.Object...);
method public static void assertContentsInAnyOrder(java.lang.Iterable<?>, java.lang.Object...);
method public static void assertContentsInOrder(java.lang.String, java.lang.Iterable<?>, java.lang.Object...);
method public static void assertContentsInOrder(java.lang.Iterable<?>, java.lang.Object...);
method public static void assertEmpty(java.lang.String, java.lang.Iterable<?>);
method public static void assertEmpty(java.lang.Iterable<?>);
method public static void assertEmpty(java.lang.String, java.util.Map<?, ?>);
method public static void assertEmpty(java.util.Map<?, ?>);
method public static void assertEquals(java.lang.String, byte[], byte[]);
method public static void assertEquals(byte[], byte[]);
method public static void assertEquals(java.lang.String, int[], int[]);
method public static void assertEquals(int[], int[]);
method public static void assertEquals(java.lang.String, double[], double[]);
method public static void assertEquals(double[], double[]);
method public static void assertEquals(java.lang.String, java.lang.Object[], java.lang.Object[]);
method public static void assertEquals(java.lang.Object[], java.lang.Object[]);
method public static void assertEquals(java.lang.String, java.util.Set<?>, java.util.Set<?>);
method public static void assertEquals(java.util.Set<?>, java.util.Set<?>);
method public static java.util.regex.MatchResult assertMatchesRegex(java.lang.String, java.lang.String, java.lang.String);
method public static java.util.regex.MatchResult assertMatchesRegex(java.lang.String, java.lang.String);
method public static void assertNotContainsRegex(java.lang.String, java.lang.String, java.lang.String);
method public static void assertNotContainsRegex(java.lang.String, java.lang.String);
method public static void assertNotEmpty(java.lang.String, java.lang.Iterable<?>);
method public static void assertNotEmpty(java.lang.Iterable<?>);
method public static void assertNotEmpty(java.lang.String, java.util.Map<?, ?>);
method public static void assertNotEmpty(java.util.Map<?, ?>);
method public static void assertNotEqual(java.lang.String, java.lang.Object, java.lang.Object);
method public static void assertNotEqual(java.lang.Object, java.lang.Object);
method public static void assertNotMatchesRegex(java.lang.String, java.lang.String, java.lang.String);
method public static void assertNotMatchesRegex(java.lang.String, java.lang.String);
method public static void checkEqualsAndHashCodeMethods(java.lang.String, java.lang.Object, java.lang.Object, boolean);
method public static void checkEqualsAndHashCodeMethods(java.lang.Object, java.lang.Object, boolean);
@Deprecated public final class MoreAsserts {
method @Deprecated public static void assertAssignableFrom(Class<?>, Object);
method @Deprecated public static void assertAssignableFrom(Class<?>, Class<?>);
method @Deprecated public static java.util.regex.MatchResult assertContainsRegex(String, String, String);
method @Deprecated public static java.util.regex.MatchResult assertContainsRegex(String, String);
method @Deprecated public static void assertContentsInAnyOrder(String, Iterable<?>, java.lang.Object...);
method @Deprecated public static void assertContentsInAnyOrder(Iterable<?>, java.lang.Object...);
method @Deprecated public static void assertContentsInOrder(String, Iterable<?>, java.lang.Object...);
method @Deprecated public static void assertContentsInOrder(Iterable<?>, java.lang.Object...);
method @Deprecated public static void assertEmpty(String, Iterable<?>);
method @Deprecated public static void assertEmpty(Iterable<?>);
method @Deprecated public static void assertEmpty(String, java.util.Map<?,?>);
method @Deprecated public static void assertEmpty(java.util.Map<?,?>);
method @Deprecated public static void assertEquals(String, byte[], byte[]);
method @Deprecated public static void assertEquals(byte[], byte[]);
method @Deprecated public static void assertEquals(String, int[], int[]);
method @Deprecated public static void assertEquals(int[], int[]);
method @Deprecated public static void assertEquals(String, double[], double[]);
method @Deprecated public static void assertEquals(double[], double[]);
method @Deprecated public static void assertEquals(String, Object[], Object[]);
method @Deprecated public static void assertEquals(Object[], Object[]);
method @Deprecated public static void assertEquals(String, java.util.Set<?>, java.util.Set<?>);
method @Deprecated public static void assertEquals(java.util.Set<?>, java.util.Set<?>);
method @Deprecated public static java.util.regex.MatchResult assertMatchesRegex(String, String, String);
method @Deprecated public static java.util.regex.MatchResult assertMatchesRegex(String, String);
method @Deprecated public static void assertNotContainsRegex(String, String, String);
method @Deprecated public static void assertNotContainsRegex(String, String);
method @Deprecated public static void assertNotEmpty(String, Iterable<?>);
method @Deprecated public static void assertNotEmpty(Iterable<?>);
method @Deprecated public static void assertNotEmpty(String, java.util.Map<?,?>);
method @Deprecated public static void assertNotEmpty(java.util.Map<?,?>);
method @Deprecated public static void assertNotEqual(String, Object, Object);
method @Deprecated public static void assertNotEqual(Object, Object);
method @Deprecated public static void assertNotMatchesRegex(String, String, String);
method @Deprecated public static void assertNotMatchesRegex(String, String);
method @Deprecated public static void checkEqualsAndHashCodeMethods(String, Object, Object, boolean);
method @Deprecated public static void checkEqualsAndHashCodeMethods(Object, Object, boolean);
}
public abstract deprecated class ProviderTestCase<T extends android.content.ContentProvider> extends android.test.InstrumentationTestCase {
ctor public ProviderTestCase(java.lang.Class<T>, java.lang.String);
method public android.test.mock.MockContentResolver getMockContentResolver();
method public android.test.IsolatedContext getMockContext();
method public T getProvider();
method public static <T extends android.content.ContentProvider> android.content.ContentResolver newResolverWithContentProviderFromSql(android.content.Context, java.lang.Class<T>, java.lang.String, java.lang.String, int, java.lang.String) throws java.lang.IllegalAccessException, java.lang.InstantiationException;
@Deprecated public abstract class ProviderTestCase<T extends android.content.ContentProvider> extends android.test.InstrumentationTestCase {
ctor @Deprecated public ProviderTestCase(Class<T>, String);
method @Deprecated public android.test.mock.MockContentResolver getMockContentResolver();
method @Deprecated public android.test.IsolatedContext getMockContext();
method @Deprecated public T getProvider();
method @Deprecated public static <T extends android.content.ContentProvider> android.content.ContentResolver newResolverWithContentProviderFromSql(android.content.Context, Class<T>, String, String, int, String) throws java.lang.IllegalAccessException, java.lang.InstantiationException;
}
public abstract class ProviderTestCase2<T extends android.content.ContentProvider> extends android.test.AndroidTestCase {
ctor public ProviderTestCase2(java.lang.Class<T>, java.lang.String);
ctor public ProviderTestCase2(Class<T>, String);
method public android.test.mock.MockContentResolver getMockContentResolver();
method public android.test.IsolatedContext getMockContext();
method public T getProvider();
method public static <T extends android.content.ContentProvider> android.content.ContentResolver newResolverWithContentProviderFromSql(android.content.Context, java.lang.String, java.lang.Class<T>, java.lang.String, java.lang.String, int, java.lang.String) throws java.lang.IllegalAccessException, java.lang.InstantiationException;
method public static <T extends android.content.ContentProvider> android.content.ContentResolver newResolverWithContentProviderFromSql(android.content.Context, String, Class<T>, String, String, int, String) throws java.lang.IllegalAccessException, java.lang.InstantiationException;
}
public deprecated class RenamingDelegatingContext extends android.content.ContextWrapper {
ctor public RenamingDelegatingContext(android.content.Context, java.lang.String);
ctor public RenamingDelegatingContext(android.content.Context, android.content.Context, java.lang.String);
method public java.lang.String getDatabasePrefix();
method public void makeExistingFilesAndDbsAccessible();
method public static <T extends android.content.ContentProvider> T providerWithRenamedContext(java.lang.Class<T>, android.content.Context, java.lang.String) throws java.lang.IllegalAccessException, java.lang.InstantiationException;
method public static <T extends android.content.ContentProvider> T providerWithRenamedContext(java.lang.Class<T>, android.content.Context, java.lang.String, boolean) throws java.lang.IllegalAccessException, java.lang.InstantiationException;
@Deprecated public class RenamingDelegatingContext extends android.content.ContextWrapper {
ctor @Deprecated public RenamingDelegatingContext(android.content.Context, String);
ctor @Deprecated public RenamingDelegatingContext(android.content.Context, android.content.Context, String);
method @Deprecated public String getDatabasePrefix();
method @Deprecated public void makeExistingFilesAndDbsAccessible();
method @Deprecated public static <T extends android.content.ContentProvider> T providerWithRenamedContext(Class<T>, android.content.Context, String) throws java.lang.IllegalAccessException, java.lang.InstantiationException;
method @Deprecated public static <T extends android.content.ContentProvider> T providerWithRenamedContext(Class<T>, android.content.Context, String, boolean) throws java.lang.IllegalAccessException, java.lang.InstantiationException;
}
public abstract deprecated class ServiceTestCase<T extends android.app.Service> extends android.test.AndroidTestCase {
ctor public ServiceTestCase(java.lang.Class<T>);
method protected android.os.IBinder bindService(android.content.Intent);
method public android.app.Application getApplication();
method public T getService();
method public android.content.Context getSystemContext();
method public void setApplication(android.app.Application);
method protected void setupService();
method protected void shutdownService();
method protected void startService(android.content.Intent);
method public void testServiceTestCaseSetUpProperly() throws java.lang.Exception;
@Deprecated public abstract class ServiceTestCase<T extends android.app.Service> extends android.test.AndroidTestCase {
ctor @Deprecated public ServiceTestCase(Class<T>);
method @Deprecated protected android.os.IBinder bindService(android.content.Intent);
method @Deprecated public android.app.Application getApplication();
method @Deprecated public T getService();
method @Deprecated public android.content.Context getSystemContext();
method @Deprecated public void setApplication(android.app.Application);
method @Deprecated protected void setupService();
method @Deprecated protected void shutdownService();
method @Deprecated protected void startService(android.content.Intent);
method @Deprecated public void testServiceTestCaseSetUpProperly() throws java.lang.Exception;
}
public abstract deprecated class SingleLaunchActivityTestCase<T extends android.app.Activity> extends android.test.InstrumentationTestCase {
ctor public SingleLaunchActivityTestCase(java.lang.String, java.lang.Class<T>);
method public T getActivity();
method public void testActivityTestCaseSetUpProperly() throws java.lang.Exception;
@Deprecated public abstract class SingleLaunchActivityTestCase<T extends android.app.Activity> extends android.test.InstrumentationTestCase {
ctor @Deprecated public SingleLaunchActivityTestCase(String, Class<T>);
method @Deprecated public T getActivity();
method @Deprecated public void testActivityTestCaseSetUpProperly() throws java.lang.Exception;
}
public deprecated class SyncBaseInstrumentation extends android.test.InstrumentationTestCase {
ctor public SyncBaseInstrumentation();
method protected void cancelSyncsandDisableAutoSync();
method protected void syncProvider(android.net.Uri, java.lang.String, java.lang.String) throws java.lang.Exception;
@Deprecated public class SyncBaseInstrumentation extends android.test.InstrumentationTestCase {
ctor @Deprecated public SyncBaseInstrumentation();
method @Deprecated protected void cancelSyncsandDisableAutoSync();
method @Deprecated protected void syncProvider(android.net.Uri, String, String) throws java.lang.Exception;
}
public abstract deprecated interface TestSuiteProvider {
method public abstract junit.framework.TestSuite getTestSuite();
@Deprecated public interface TestSuiteProvider {
method @Deprecated public junit.framework.TestSuite getTestSuite();
}
public deprecated class TouchUtils {
ctor public TouchUtils();
method public static void clickView(android.test.InstrumentationTestCase, android.view.View);
method public static deprecated void drag(android.test.ActivityInstrumentationTestCase, float, float, float, float, int);
method public static void drag(android.test.InstrumentationTestCase, float, float, float, float, int);
method public static deprecated void dragQuarterScreenDown(android.test.ActivityInstrumentationTestCase);
method public static void dragQuarterScreenDown(android.test.InstrumentationTestCase, android.app.Activity);
method public static deprecated void dragQuarterScreenUp(android.test.ActivityInstrumentationTestCase);
method public static void dragQuarterScreenUp(android.test.InstrumentationTestCase, android.app.Activity);
method public static deprecated int dragViewBy(android.test.ActivityInstrumentationTestCase, android.view.View, int, int, int);
method public static deprecated int dragViewBy(android.test.InstrumentationTestCase, android.view.View, int, int, int);
method public static deprecated int dragViewTo(android.test.ActivityInstrumentationTestCase, android.view.View, int, int, int);
method public static int dragViewTo(android.test.InstrumentationTestCase, android.view.View, int, int, int);
method public static deprecated void dragViewToBottom(android.test.ActivityInstrumentationTestCase, android.view.View);
method public static void dragViewToBottom(android.test.InstrumentationTestCase, android.app.Activity, android.view.View);
method public static deprecated void dragViewToBottom(android.test.ActivityInstrumentationTestCase, android.view.View, int);
method public static void dragViewToBottom(android.test.InstrumentationTestCase, android.app.Activity, android.view.View, int);
method public static deprecated void dragViewToTop(android.test.ActivityInstrumentationTestCase, android.view.View);
method public static deprecated void dragViewToTop(android.test.ActivityInstrumentationTestCase, android.view.View, int);
method public static void dragViewToTop(android.test.InstrumentationTestCase, android.view.View);
method public static void dragViewToTop(android.test.InstrumentationTestCase, android.view.View, int);
method public static deprecated int dragViewToX(android.test.ActivityInstrumentationTestCase, android.view.View, int, int);
method public static int dragViewToX(android.test.InstrumentationTestCase, android.view.View, int, int);
method public static deprecated int dragViewToY(android.test.ActivityInstrumentationTestCase, android.view.View, int, int);
method public static int dragViewToY(android.test.InstrumentationTestCase, android.view.View, int, int);
method public static deprecated void longClickView(android.test.ActivityInstrumentationTestCase, android.view.View);
method public static void longClickView(android.test.InstrumentationTestCase, android.view.View);
method public static deprecated void scrollToBottom(android.test.ActivityInstrumentationTestCase, android.view.ViewGroup);
method public static void scrollToBottom(android.test.InstrumentationTestCase, android.app.Activity, android.view.ViewGroup);
method public static deprecated void scrollToTop(android.test.ActivityInstrumentationTestCase, android.view.ViewGroup);
method public static void scrollToTop(android.test.InstrumentationTestCase, android.app.Activity, android.view.ViewGroup);
method public static void tapView(android.test.InstrumentationTestCase, android.view.View);
method public static void touchAndCancelView(android.test.InstrumentationTestCase, android.view.View);
@Deprecated public class TouchUtils {
ctor @Deprecated public TouchUtils();
method @Deprecated public static void clickView(android.test.InstrumentationTestCase, android.view.View);
method @Deprecated public static void drag(android.test.ActivityInstrumentationTestCase, float, float, float, float, int);
method @Deprecated public static void drag(android.test.InstrumentationTestCase, float, float, float, float, int);
method @Deprecated public static void dragQuarterScreenDown(android.test.ActivityInstrumentationTestCase);
method @Deprecated public static void dragQuarterScreenDown(android.test.InstrumentationTestCase, android.app.Activity);
method @Deprecated public static void dragQuarterScreenUp(android.test.ActivityInstrumentationTestCase);
method @Deprecated public static void dragQuarterScreenUp(android.test.InstrumentationTestCase, android.app.Activity);
method @Deprecated public static int dragViewBy(android.test.ActivityInstrumentationTestCase, android.view.View, int, int, int);
method @Deprecated public static int dragViewBy(android.test.InstrumentationTestCase, android.view.View, int, int, int);
method @Deprecated public static int dragViewTo(android.test.ActivityInstrumentationTestCase, android.view.View, int, int, int);
method @Deprecated public static int dragViewTo(android.test.InstrumentationTestCase, android.view.View, int, int, int);
method @Deprecated public static void dragViewToBottom(android.test.ActivityInstrumentationTestCase, android.view.View);
method @Deprecated public static void dragViewToBottom(android.test.InstrumentationTestCase, android.app.Activity, android.view.View);
method @Deprecated public static void dragViewToBottom(android.test.ActivityInstrumentationTestCase, android.view.View, int);
method @Deprecated public static void dragViewToBottom(android.test.InstrumentationTestCase, android.app.Activity, android.view.View, int);
method @Deprecated public static void dragViewToTop(android.test.ActivityInstrumentationTestCase, android.view.View);
method @Deprecated public static void dragViewToTop(android.test.ActivityInstrumentationTestCase, android.view.View, int);
method @Deprecated public static void dragViewToTop(android.test.InstrumentationTestCase, android.view.View);
method @Deprecated public static void dragViewToTop(android.test.InstrumentationTestCase, android.view.View, int);
method @Deprecated public static int dragViewToX(android.test.ActivityInstrumentationTestCase, android.view.View, int, int);
method @Deprecated public static int dragViewToX(android.test.InstrumentationTestCase, android.view.View, int, int);
method @Deprecated public static int dragViewToY(android.test.ActivityInstrumentationTestCase, android.view.View, int, int);
method @Deprecated public static int dragViewToY(android.test.InstrumentationTestCase, android.view.View, int, int);
method @Deprecated public static void longClickView(android.test.ActivityInstrumentationTestCase, android.view.View);
method @Deprecated public static void longClickView(android.test.InstrumentationTestCase, android.view.View);
method @Deprecated public static void scrollToBottom(android.test.ActivityInstrumentationTestCase, android.view.ViewGroup);
method @Deprecated public static void scrollToBottom(android.test.InstrumentationTestCase, android.app.Activity, android.view.ViewGroup);
method @Deprecated public static void scrollToTop(android.test.ActivityInstrumentationTestCase, android.view.ViewGroup);
method @Deprecated public static void scrollToTop(android.test.InstrumentationTestCase, android.app.Activity, android.view.ViewGroup);
method @Deprecated public static void tapView(android.test.InstrumentationTestCase, android.view.View);
method @Deprecated public static void touchAndCancelView(android.test.InstrumentationTestCase, android.view.View);
}
public deprecated class ViewAsserts {
method public static void assertBaselineAligned(android.view.View, android.view.View);
method public static void assertBottomAligned(android.view.View, android.view.View);
method public static void assertBottomAligned(android.view.View, android.view.View, int);
method public static void assertGroupContains(android.view.ViewGroup, android.view.View);
method public static void assertGroupIntegrity(android.view.ViewGroup);
method public static void assertGroupNotContains(android.view.ViewGroup, android.view.View);
method public static void assertHasScreenCoordinates(android.view.View, android.view.View, int, int);
method public static void assertHorizontalCenterAligned(android.view.View, android.view.View);
method public static void assertLeftAligned(android.view.View, android.view.View);
method public static void assertLeftAligned(android.view.View, android.view.View, int);
method public static void assertOffScreenAbove(android.view.View, android.view.View);
method public static void assertOffScreenBelow(android.view.View, android.view.View);
method public static void assertOnScreen(android.view.View, android.view.View);
method public static void assertRightAligned(android.view.View, android.view.View);
method public static void assertRightAligned(android.view.View, android.view.View, int);
method public static void assertTopAligned(android.view.View, android.view.View);
method public static void assertTopAligned(android.view.View, android.view.View, int);
method public static void assertVerticalCenterAligned(android.view.View, android.view.View);
@Deprecated public class ViewAsserts {
method @Deprecated public static void assertBaselineAligned(android.view.View, android.view.View);
method @Deprecated public static void assertBottomAligned(android.view.View, android.view.View);
method @Deprecated public static void assertBottomAligned(android.view.View, android.view.View, int);
method @Deprecated public static void assertGroupContains(android.view.ViewGroup, android.view.View);
method @Deprecated public static void assertGroupIntegrity(android.view.ViewGroup);
method @Deprecated public static void assertGroupNotContains(android.view.ViewGroup, android.view.View);
method @Deprecated public static void assertHasScreenCoordinates(android.view.View, android.view.View, int, int);
method @Deprecated public static void assertHorizontalCenterAligned(android.view.View, android.view.View);
method @Deprecated public static void assertLeftAligned(android.view.View, android.view.View);
method @Deprecated public static void assertLeftAligned(android.view.View, android.view.View, int);
method @Deprecated public static void assertOffScreenAbove(android.view.View, android.view.View);
method @Deprecated public static void assertOffScreenBelow(android.view.View, android.view.View);
method @Deprecated public static void assertOnScreen(android.view.View, android.view.View);
method @Deprecated public static void assertRightAligned(android.view.View, android.view.View);
method @Deprecated public static void assertRightAligned(android.view.View, android.view.View, int);
method @Deprecated public static void assertTopAligned(android.view.View, android.view.View);
method @Deprecated public static void assertTopAligned(android.view.View, android.view.View, int);
method @Deprecated public static void assertVerticalCenterAligned(android.view.View, android.view.View);
}
}
package android.test.suitebuilder {
public deprecated class TestMethod {
ctor public TestMethod(java.lang.reflect.Method, java.lang.Class<? extends junit.framework.TestCase>);
ctor public TestMethod(java.lang.String, java.lang.Class<? extends junit.framework.TestCase>);
ctor public TestMethod(junit.framework.TestCase);
method public junit.framework.TestCase createTest() throws java.lang.IllegalAccessException, java.lang.InstantiationException, java.lang.reflect.InvocationTargetException;
method public <T extends java.lang.annotation.Annotation> T getAnnotation(java.lang.Class<T>);
method public java.lang.Class<? extends junit.framework.TestCase> getEnclosingClass();
method public java.lang.String getEnclosingClassname();
method public java.lang.String getName();
@Deprecated public class TestMethod {
ctor @Deprecated public TestMethod(java.lang.reflect.Method, Class<? extends junit.framework.TestCase>);
ctor @Deprecated public TestMethod(String, Class<? extends junit.framework.TestCase>);
ctor @Deprecated public TestMethod(junit.framework.TestCase);
method @Deprecated public junit.framework.TestCase createTest() throws java.lang.IllegalAccessException, java.lang.InstantiationException, java.lang.reflect.InvocationTargetException;
method @Deprecated public <T extends java.lang.annotation.Annotation> T getAnnotation(Class<T>);
method @Deprecated public Class<? extends junit.framework.TestCase> getEnclosingClass();
method @Deprecated public String getEnclosingClassname();
method @Deprecated public String getName();
}
public deprecated class TestSuiteBuilder {
ctor public TestSuiteBuilder(java.lang.Class);
ctor public TestSuiteBuilder(java.lang.String, java.lang.ClassLoader);
method public final junit.framework.TestSuite build();
method public android.test.suitebuilder.TestSuiteBuilder excludePackages(java.lang.String...);
method protected java.lang.String getSuiteName();
method public final android.test.suitebuilder.TestSuiteBuilder includeAllPackagesUnderHere();
method public android.test.suitebuilder.TestSuiteBuilder includePackages(java.lang.String...);
method public android.test.suitebuilder.TestSuiteBuilder named(java.lang.String);
@Deprecated public class TestSuiteBuilder {
ctor @Deprecated public TestSuiteBuilder(Class);
ctor @Deprecated public TestSuiteBuilder(String, ClassLoader);
method @Deprecated public final junit.framework.TestSuite build();
method @Deprecated public android.test.suitebuilder.TestSuiteBuilder excludePackages(java.lang.String...);
method @Deprecated protected String getSuiteName();
method @Deprecated public final android.test.suitebuilder.TestSuiteBuilder includeAllPackagesUnderHere();
method @Deprecated public android.test.suitebuilder.TestSuiteBuilder includePackages(java.lang.String...);
method @Deprecated public android.test.suitebuilder.TestSuiteBuilder named(String);
}
public static deprecated class TestSuiteBuilder.FailedToCreateTests extends junit.framework.TestCase {
ctor public TestSuiteBuilder.FailedToCreateTests(java.lang.Exception);
method public void testSuiteConstructionFailed();
@Deprecated public static class TestSuiteBuilder.FailedToCreateTests extends junit.framework.TestCase {
ctor @Deprecated public TestSuiteBuilder.FailedToCreateTests(Exception);
method @Deprecated public void testSuiteConstructionFailed();
}
}
@@ -290,44 +291,44 @@ package junit.runner {
public abstract class BaseTestRunner implements junit.framework.TestListener {
ctor public BaseTestRunner();
method public synchronized void addError(junit.framework.Test, java.lang.Throwable);
method public synchronized void addFailure(junit.framework.Test, junit.framework.AssertionFailedError);
method public void addError(junit.framework.Test, Throwable);
method public void addFailure(junit.framework.Test, junit.framework.AssertionFailedError);
method protected void clearStatus();
method public java.lang.String elapsedTimeAsString(long);
method public synchronized void endTest(junit.framework.Test);
method public java.lang.String extractClassName(java.lang.String);
method public static java.lang.String getFilteredTrace(java.lang.Throwable);
method public static java.lang.String getFilteredTrace(java.lang.String);
method public deprecated junit.runner.TestSuiteLoader getLoader();
method public static java.lang.String getPreference(java.lang.String);
method public static int getPreference(java.lang.String, int);
method public String elapsedTimeAsString(long);
method public void endTest(junit.framework.Test);
method public String extractClassName(String);
method public static String getFilteredTrace(Throwable);
method public static String getFilteredTrace(String);
method @Deprecated public junit.runner.TestSuiteLoader getLoader();
method public static String getPreference(String);
method public static int getPreference(String, int);
method protected static java.util.Properties getPreferences();
method public junit.framework.Test getTest(java.lang.String);
method public static deprecated boolean inVAJava();
method protected java.lang.Class<?> loadSuiteClass(java.lang.String) throws java.lang.ClassNotFoundException;
method protected java.lang.String processArguments(java.lang.String[]);
method protected abstract void runFailed(java.lang.String);
method public junit.framework.Test getTest(String);
method @Deprecated public static boolean inVAJava();
method protected Class<?> loadSuiteClass(String) throws java.lang.ClassNotFoundException;
method protected String processArguments(String[]);
method protected abstract void runFailed(String);
method public static void savePreferences() throws java.io.IOException;
method public void setLoading(boolean);
method public void setPreference(java.lang.String, java.lang.String);
method public void setPreference(String, String);
method protected static void setPreferences(java.util.Properties);
method protected static boolean showStackRaw();
method public synchronized void startTest(junit.framework.Test);
method public abstract void testEnded(java.lang.String);
method public abstract void testFailed(int, junit.framework.Test, java.lang.Throwable);
method public abstract void testStarted(java.lang.String);
method public static java.lang.String truncate(java.lang.String);
method public void startTest(junit.framework.Test);
method public abstract void testEnded(String);
method public abstract void testFailed(int, junit.framework.Test, Throwable);
method public abstract void testStarted(String);
method public static String truncate(String);
method protected boolean useReloadingTestSuiteLoader();
field public static final java.lang.String SUITE_METHODNAME = "suite";
field public static final String SUITE_METHODNAME = "suite";
}
public abstract interface TestSuiteLoader {
method public abstract java.lang.Class load(java.lang.String) throws java.lang.ClassNotFoundException;
method public abstract java.lang.Class reload(java.lang.Class) throws java.lang.ClassNotFoundException;
public interface TestSuiteLoader {
method public Class load(String) throws java.lang.ClassNotFoundException;
method public Class reload(Class) throws java.lang.ClassNotFoundException;
}
public class Version {
method public static java.lang.String id();
method public static String id();
}
}

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0

View File

@@ -0,0 +1 @@
// Signature format: 2.0