summaryrefslogtreecommitdiff
path: root/android_icu4j/src/main/java/android/icu/text/Replaceable.java
diff options
context:
space:
mode:
Diffstat (limited to 'android_icu4j/src/main/java/android/icu/text/Replaceable.java')
-rw-r--r--android_icu4j/src/main/java/android/icu/text/Replaceable.java34
1 files changed, 17 insertions, 17 deletions
diff --git a/android_icu4j/src/main/java/android/icu/text/Replaceable.java b/android_icu4j/src/main/java/android/icu/text/Replaceable.java
index e3289dfc7..8db57f7f0 100644
--- a/android_icu4j/src/main/java/android/icu/text/Replaceable.java
+++ b/android_icu4j/src/main/java/android/icu/text/Replaceable.java
@@ -1,7 +1,7 @@
/* GENERATED SOURCE. DO NOT MODIFY. */
/*
*******************************************************************************
- * Copyright (C) 1996-2004, International Business Machines Corporation and *
+ * Copyright (C) 1996-2016, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
@@ -93,9 +93,9 @@ public interface Replaceable {
* <code>dstStart + (srcLimit-srcStart) - 1</code>.
*
* @param srcStart the beginning index to copy, inclusive; <code>0
- * <= start <= limit</code>.
+ * &lt;= start &lt;= limit</code>.
* @param srcLimit the ending index to copy, exclusive;
- * <code>start <= limit <= length()</code>.
+ * <code>start &lt;= limit &lt;= length()</code>.
* @param dst the destination array.
* @param dstStart the start offset in the destination array.
*/
@@ -111,10 +111,10 @@ public interface Replaceable {
* check for initial and trailing identical characters, and make a
* smaller replacement if possible. This will preserve as much
* metadata as possible.
- * @param start the beginning index, inclusive; <code>0 <= start
- * <= limit</code>.
- * @param limit the ending index, exclusive; <code>start <= limit
- * <= length()</code>.
+ * @param start the beginning index, inclusive; <code>0 &lt;= start
+ * &lt;= limit</code>.
+ * @param limit the ending index, exclusive; <code>start &lt;= limit
+ * &lt;= length()</code>.
* @param text the text to replace characters <code>start</code>
* to <code>limit - 1</code>
*/
@@ -130,14 +130,14 @@ public interface Replaceable {
* check for initial and trailing identical characters, and make a
* smaller replacement if possible. This will preserve as much
* metadata as possible.
- * @param start the beginning index, inclusive; <code>0 <= start
- * <= limit</code>.
- * @param limit the ending index, exclusive; <code>start <= limit
- * <= length()</code>.
+ * @param start the beginning index, inclusive; <code>0 &lt;= start
+ * &lt;= limit</code>.
+ * @param limit the ending index, exclusive; <code>start &lt;= limit
+ * &lt;= length()</code>.
* @param chars the text to replace characters <code>start</code>
* to <code>limit - 1</code>
* @param charsStart the beginning index into <code>chars</code>,
- * inclusive; <code>0 <= start <= limit</code>.
+ * inclusive; <code>0 &lt;= start &lt;= limit</code>.
* @param charsLen the number of characters of <code>chars</code>.
*/
void replace(int start, int limit, char[] chars,
@@ -156,18 +156,18 @@ public interface Replaceable {
* getChars(start, limit, text, 0);
* replace(dest, dest, text, 0, limit - start);</pre>
*
- * @param start the beginning index, inclusive; <code>0 <= start <=
+ * @param start the beginning index, inclusive; <code>0 &lt;= start &lt;=
* limit</code>.
- * @param limit the ending index, exclusive; <code>start <= limit <=
+ * @param limit the ending index, exclusive; <code>start &lt;= limit &lt;=
* length()</code>.
* @param dest the destination index. The characters from
* <code>start..limit-1</code> will be copied to <code>dest</code>.
- * Implementations of this method may assume that <code>dest <= start ||
- * dest >= limit</code>.
+ * Implementations of this method may assume that <code>dest &lt;= start ||
+ * dest &gt;= limit</code>.
*/
void copy(int start, int limit, int dest);
- /**
+ /**R
* Returns true if this object contains metadata. If a
* Replaceable object has metadata, calls to the Replaceable API
* must be made so as to preserve metadata. If it does not, calls