summaryrefslogtreecommitdiffstats
path: root/core/java/android/view/Window.java
diff options
context:
space:
mode:
authorJohn Spurlock <jspurlock@google.com>2015-03-27 21:13:21 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-03-27 21:13:22 +0000
commit0f09c3d0b6d483bbb457c62d67fac921f85e073a (patch)
tree7b19cc3b3d117b12b2d2239ef37c23515b79c621 /core/java/android/view/Window.java
parent98170b0db191f916bf2a0f104f5d5057c2aaeaa9 (diff)
parentbc4cf00dc5bf6e0e3c01206d5c46e64306df260a (diff)
downloadframeworks_base-0f09c3d0b6d483bbb457c62d67fac921f85e073a.zip
frameworks_base-0f09c3d0b6d483bbb457c62d67fac921f85e073a.tar.gz
frameworks_base-0f09c3d0b6d483bbb457c62d67fac921f85e073a.tar.bz2
Merge "Fix a few found doc problems."
Diffstat (limited to 'core/java/android/view/Window.java')
-rw-r--r--core/java/android/view/Window.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/view/Window.java b/core/java/android/view/Window.java
index 9a92932..36f047e 100644
--- a/core/java/android/view/Window.java
+++ b/core/java/android/view/Window.java
@@ -1856,14 +1856,14 @@ public abstract class Window {
public abstract int getStatusBarColor();
/**
- * Sets the color of the status bar to {@param color}.
+ * Sets the color of the status bar to {@code color}.
*
* For this to take effect,
* the window must be drawing the system bar backgrounds with
* {@link android.view.WindowManager.LayoutParams#FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS} and
* {@link android.view.WindowManager.LayoutParams#FLAG_TRANSLUCENT_STATUS} must not be set.
*
- * If {@param color} is not opaque, consider setting
+ * If {@code color} is not opaque, consider setting
* {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_STABLE} and
* {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN}.
* <p>