summaryrefslogtreecommitdiff
path: root/android_icu4j/src/main/java/android/icu/text/ReplaceableString.java
diff options
context:
space:
mode:
Diffstat (limited to 'android_icu4j/src/main/java/android/icu/text/ReplaceableString.java')
-rw-r--r--android_icu4j/src/main/java/android/icu/text/ReplaceableString.java32
1 files changed, 16 insertions, 16 deletions
diff --git a/android_icu4j/src/main/java/android/icu/text/ReplaceableString.java b/android_icu4j/src/main/java/android/icu/text/ReplaceableString.java
index 43c879889..1882df087 100644
--- a/android_icu4j/src/main/java/android/icu/text/ReplaceableString.java
+++ b/android_icu4j/src/main/java/android/icu/text/ReplaceableString.java
@@ -1,7 +1,7 @@
/* GENERATED SOURCE. DO NOT MODIFY. */
/*
*******************************************************************************
- * Copyright (C) 1996-2009, International Business Machines Corporation and *
+ * Copyright (C) 1996-2016, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
@@ -109,9 +109,9 @@ public class ReplaceableString implements 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.
*/
@@ -124,10 +124,10 @@ public class ReplaceableString implements Replaceable {
/**
* Replace zero or more characters with new characters.
* <code>Replaceable</code> API.
- * @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 new text to replace characters <code>start</code> to
* <code>limit - 1</code>
*/
@@ -137,14 +137,14 @@ public class ReplaceableString implements Replaceable {
/**
* Replace a substring of this object with the given text.
- * @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>.
*/
public void replace(int start, int limit, char[] chars,
@@ -158,14 +158,14 @@ public class ReplaceableString implements Replaceable {
* information. This method is used to duplicate or reorder substrings.
* The destination index must not overlap the source range.
*
- * @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>.
*/
public void copy(int start, int limit, int dest) {
if (start == limit && start >= 0 && start <= buf.length()) {