diff options
| author | Dianne Hackborn <hackbod@google.com> | 2013-09-04 17:43:56 -0700 |
|---|---|---|
| committer | Dianne Hackborn <hackbod@google.com> | 2013-09-04 17:43:56 -0700 |
| commit | b811e64cb325c8b9c46a2e8e97ef1aa86ac8664b (patch) | |
| tree | f796926b2a2d7d740f4005f122f8912da19053ef /core/java/android/widget/TextView.java | |
| parent | 52ea7f57ed08ea982dcb125b564b5509ef8dc3b6 (diff) | |
Fix issue #10461600: KLP API Review: UndoManager
Hide, hide, hide!
Change-Id: Ie04825723d9392a4258e2d738828201ee387f7c6
Diffstat (limited to 'core/java/android/widget/TextView.java')
| -rw-r--r-- | core/java/android/widget/TextView.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/java/android/widget/TextView.java b/core/java/android/widget/TextView.java index a2d48a8cd89b..3c9cc987d5cd 100644 --- a/core/java/android/widget/TextView.java +++ b/core/java/android/widget/TextView.java @@ -1519,6 +1519,8 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener * with this TextView. By default there is no associated UndoManager, so null * is returned. One can be associated with the TextView through * {@link #setUndoManager(android.content.UndoManager, String)} + * + * @hide */ public final UndoManager getUndoManager() { return mEditor == null ? null : mEditor.mUndoManager; @@ -1535,6 +1537,8 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener * @param tag String tag identifying this particular TextView owner in the * UndoManager. This is used to keep the correct association with the * {@link android.content.UndoOwner} of any operations inside of the UndoManager. + * + * @hide */ public final void setUndoManager(UndoManager undoManager, String tag) { if (undoManager != null) { |
