diff options
| author | 2011-03-02 19:50:16 -0800 | |
|---|---|---|
| committer | 2011-03-02 19:50:20 -0800 | |
| commit | 616f3835a0a67328b378cb1cbc126f17478ab4a0 (patch) | |
| tree | 934cbd2c2bc2534309ba4ca9195b94870b595831 | |
| parent | 2da0c5826df40d9f528bfe7d2e762c3fbea03f7f (diff) | |
Removed documentation links
Broken build.
Should the Paint fields be made public or should the SpanStringBuilder
method be hidden ???
Change-Id: I8ecea19104357ea53ad53b23d02a707ec422161d
| -rw-r--r-- | core/java/android/text/SpannableStringBuilder.java | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/core/java/android/text/SpannableStringBuilder.java b/core/java/android/text/SpannableStringBuilder.java index 08b03d304aeb..53fa7c214e19 100644 --- a/core/java/android/text/SpannableStringBuilder.java +++ b/core/java/android/text/SpannableStringBuilder.java @@ -1179,21 +1179,20 @@ implements CharSequence, GetChars, Spannable, Editable, Appendable, * <code>contextStart</code>, <code>contextEnd</code> and <code>offset</code> are relative to * the start of the string.</p> * - * <p>If cursorOpt is {@link Paint#CURSOR_AT} and the offset is not a valid cursor position, + * <p>If cursorOpt is CURSOR_AT and the offset is not a valid cursor position, * this returns -1. Otherwise this will never return a value before contextStart or after * contextEnd.</p> * * @param contextStart the start index of the context * @param contextEnd the (non-inclusive) end index of the context - * @param flags either {@link Paint#DIRECTION_RTL} or {@link Paint#DIRECTION_LTR} + * @param flags either DIRECTION_RTL or DIRECTION_LTR * @param offset the cursor position to move from - * @param cursorOpt how to move the cursor, one of {@link Paint#CURSOR_AFTER}, - * {@link Paint#CURSOR_AT_OR_AFTER}, {@link Paint#CURSOR_BEFORE}, - * {@link Paint#CURSOR_AT_OR_BEFORE}, or {@link Paint#CURSOR_AT} + * @param cursorOpt how to move the cursor, one of CURSOR_AFTER, + * CURSOR_AT_OR_AFTER, CURSOR_BEFORE, + * CURSOR_AT_OR_BEFORE, or CURSOR_AT * @param p the Paint object that is requesting this information * @return the offset of the next position, or -1 */ - @Override public int getTextRunCursor(int contextStart, int contextEnd, int flags, int offset, int cursorOpt, Paint p) { |