From: Andy Heninger Date: Mon, 8 Sep 2014 18:25:07 +0000 (+0000) Subject: ICU-11078 Improve API documentation for BreakIterator, reference UAX 14/29. X-Git-Tag: milestone-59-0-1~1590 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4db47661588a28a70fc0b20b7fcdd1b2cc559c3f;p=icu ICU-11078 Improve API documentation for BreakIterator, reference UAX 14/29. X-SVN-Rev: 36392 --- diff --git a/icu4j/main/classes/core/src/com/ibm/icu/text/BreakIterator.java b/icu4j/main/classes/core/src/com/ibm/icu/text/BreakIterator.java index 9b7ca0f5c71..6c231d8fdcd 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/text/BreakIterator.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/text/BreakIterator.java @@ -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". - * + * 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/. + *

* 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