summaryrefslogtreecommitdiffstats
path: root/annotations/src
diff options
context:
space:
mode:
authorTor Norbye <tnorbye@google.com>2015-03-10 19:10:33 -0700
committerTor Norbye <tnorbye@google.com>2015-03-10 19:10:33 -0700
commitbf66ea26f969ec4025fbed83b43b6025f04863ca (patch)
tree3ae5b454b4a9bc35c1ea85cbae7c3e8dae90ec55 /annotations/src
parentb0c60416363ae14995566a354e31e33f00a08135 (diff)
downloadandroid_frameworks_support-bf66ea26f969ec4025fbed83b43b6025f04863ca.tar.gz
android_frameworks_support-bf66ea26f969ec4025fbed83b43b6025f04863ca.tar.bz2
android_frameworks_support-bf66ea26f969ec4025fbed83b43b6025f04863ca.zip
Fix @ColorInt javadoc
Change-Id: Ib4a3798f418a98ad8aceca804d843061b40378bd
Diffstat (limited to 'annotations/src')
-rw-r--r--annotations/src/android/support/annotation/ColorInt.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/annotations/src/android/support/annotation/ColorInt.java b/annotations/src/android/support/annotation/ColorInt.java
index c7f4e40287..9b3cb7e459 100644
--- a/annotations/src/android/support/annotation/ColorInt.java
+++ b/annotations/src/android/support/annotation/ColorInt.java
@@ -29,6 +29,8 @@ import static java.lang.annotation.RetentionPolicy.CLASS;
* int, {@code AARRGGBB}. If applied to an int array, every element
* in the array represents a color integer.
* <p>
+ * Example:
+ * <pre>{@code
* public abstract void setTextColor(&#64;ColorInt int color);
* }</pre>
*/