diff options
| author | Mathew Inwood <mathewi@google.com> | 2018-08-21 16:08:34 +0100 |
|---|---|---|
| committer | Mathew Inwood <mathewi@google.com> | 2018-08-21 16:08:34 +0100 |
| commit | a85f4eb6c674c54b5fd8cf12f1984812c655c585 (patch) | |
| tree | 3c266591303cde120b9b7f39fbbb978df3719951 /core/java/android/widget/CompoundButton.java | |
| parent | fc38791616b155d9bb1353fb217993381b890f46 (diff) | |
Add @UnsupportedAppUsage annotations
For packages:
android.widget
This is an automatically generated CL. See go/UnsupportedAppUsage
for more details.
Exempted-From-Owner-Approval: Mechanical changes to the codebase
which have been approved by Android API council and announced on
android-eng@
Bug: 110868826
Test: m
Change-Id: Idf7ccc7a850fa984ea16f91cdd70159087274e5c
Merged-In: Ic61019b1df85448a158fc2ba55c326353222c6b9
Diffstat (limited to 'core/java/android/widget/CompoundButton.java')
| -rw-r--r-- | core/java/android/widget/CompoundButton.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/java/android/widget/CompoundButton.java b/core/java/android/widget/CompoundButton.java index 0762b15626f7..8d094898d909 100644 --- a/core/java/android/widget/CompoundButton.java +++ b/core/java/android/widget/CompoundButton.java @@ -19,6 +19,7 @@ package android.widget; import android.annotation.DrawableRes; import android.annotation.NonNull; import android.annotation.Nullable; +import android.annotation.UnsupportedAppUsage; import android.content.Context; import android.content.res.ColorStateList; import android.content.res.TypedArray; @@ -59,14 +60,17 @@ public abstract class CompoundButton extends Button implements Checkable { private static final String LOG_TAG = CompoundButton.class.getSimpleName(); private boolean mChecked; + @UnsupportedAppUsage private boolean mBroadcasting; + @UnsupportedAppUsage private Drawable mButtonDrawable; private ColorStateList mButtonTintList = null; private PorterDuff.Mode mButtonTintMode = null; private boolean mHasButtonTint = false; private boolean mHasButtonTintMode = false; + @UnsupportedAppUsage private OnCheckedChangeListener mOnCheckedChangeListener; private OnCheckedChangeListener mOnCheckedChangeWidgetListener; |
