]> granicus.if.org Git - icu/commitdiff
ICU-11078 Improve API documentation for BreakIterator, reference UAX 14/29.
authorAndy Heninger <andy.heninger@gmail.com>
Mon, 8 Sep 2014 18:25:07 +0000 (18:25 +0000)
committerAndy Heninger <andy.heninger@gmail.com>
Mon, 8 Sep 2014 18:25:07 +0000 (18:25 +0000)
X-SVN-Rev: 36392

icu4j/main/classes/core/src/com/ibm/icu/text/BreakIterator.java

index 9b7ca0f5c7113222d156ff3d614e8de7dc96b4b5..6c231d8fdcde5206c3d44e693225e938c086d8f6 100644 (file)
@@ -50,7 +50,12 @@ import com.ibm.icu.util.ULocale;
  * various processes (especially text editors) to treat as characters the units of text
  * that a user would think of as characters, rather than the units of text that the
  * computer sees as "characters".</ul>
- *
+ * The text boundary positions are found according to the rules
+ * described in Unicode Standard Annex #29, Text Boundaries, and
+ * Unicode Standard Annex #14, Line Breaking Properties.  These
+ * are available at http://www.unicode.org/reports/tr14/ and
+ * http://www.unicode.org/reports/tr29/.
+ * <p>
  * BreakIterator's interface follows an "iterator" model (hence the name), meaning it
  * has a concept of a "current position" and methods like first(), last(), next(),
  * and previous() that update the current position.  All BreakIterators uphold the