summaryrefslogtreecommitdiff
path: root/core/java/android/annotation
diff options
context:
space:
mode:
authorTor Norbye <tnorbye@google.com>2015-03-10 19:14:03 -0700
committerTor Norbye <tnorbye@google.com>2015-03-10 19:14:03 -0700
commit5b00941a6f740f6b37c65aa42e27f16ec16e6c8a (patch)
tree35eb50f40d5651b5c5d4952aa1f0965b2bcad2c7 /core/java/android/annotation
parent93891686eb28f8c0da6545d277965e4db50d5065 (diff)
Fix @ColorInt javadoc
Change-Id: Icea3a3b4013b4a6b5f9809eec082ea93bc26b079
Diffstat (limited to 'core/java/android/annotation')
-rw-r--r--core/java/android/annotation/ColorInt.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/java/android/annotation/ColorInt.java b/core/java/android/annotation/ColorInt.java
index c4c93eee3cee..69d196c6b5e4 100644
--- a/core/java/android/annotation/ColorInt.java
+++ b/core/java/android/annotation/ColorInt.java
@@ -29,6 +29,8 @@ import static java.lang.annotation.RetentionPolicy.SOURCE;
* 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>
*