summaryrefslogtreecommitdiff
path: root/android_icu4j/src/main/java/android/icu/text/UnicodeMatcher.java
diff options
context:
space:
mode:
Diffstat (limited to 'android_icu4j/src/main/java/android/icu/text/UnicodeMatcher.java')
-rw-r--r--android_icu4j/src/main/java/android/icu/text/UnicodeMatcher.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/android_icu4j/src/main/java/android/icu/text/UnicodeMatcher.java b/android_icu4j/src/main/java/android/icu/text/UnicodeMatcher.java
index b054f35e6..3a65678ed 100644
--- a/android_icu4j/src/main/java/android/icu/text/UnicodeMatcher.java
+++ b/android_icu4j/src/main/java/android/icu/text/UnicodeMatcher.java
@@ -1,7 +1,7 @@
/* GENERATED SOURCE. DO NOT MODIFY. */
/*
*******************************************************************************
- * Copyright (C) 2001-2004, International Business Machines Corporation and *
+ * Copyright (C) 2001-2016, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
@@ -42,7 +42,7 @@ public interface UnicodeMatcher {
public static final int U_MATCH = 2;
/**
- * The character at index i, where i < contextStart || i >= contextLimit,
+ * The character at index i, where i &lt; contextStart || i &gt;= contextLimit,
* is ETHER. This allows explicit matching by rules and UnicodeSets
* of text outside the context. In traditional terms, this allows anchoring
* at the start and/or end.
@@ -54,11 +54,11 @@ public interface UnicodeMatcher {
* the given text at the given offset. Zero, one, or more
* characters may be matched.
*
- * Matching in the forward direction is indicated by limit >
+ * Matching in the forward direction is indicated by limit &gt;
* offset. Characters from offset forwards to limit-1 will be
* considered for matching.
*
- * Matching in the reverse direction is indicated by limit <
+ * Matching in the reverse direction is indicated by limit &lt;
* offset. Characters from offset backwards to limit+1 will be
* considered for matching.
*
@@ -109,7 +109,7 @@ public interface UnicodeMatcher {
/**
* Returns TRUE if this matcher will match a character c, where c
- * & 0xFF == v, at offset, in the forward direction (with limit >
+ * &amp; 0xFF == v, at offset, in the forward direction (with limit &gt;
* offset). This is used by <tt>RuleBasedTransliterator</tt> for
* indexing.
*