jdk/src/share/classes/java/text/Bidi.java
changeset 4510 b3885d5c3fba
parent 2956 931f209e57a9
child 5506 202f599c92aa
equal deleted inserted replaced
4509:dd1cb7cc3afc 4510:b3885d5c3fba
   119      * other decimal digits before running the bidi algorithm.  This attribute, if present,
   119      * other decimal digits before running the bidi algorithm.  This attribute, if present,
   120      * must be applied to all the text in the paragraph.
   120      * must be applied to all the text in the paragraph.
   121      *
   121      *
   122      * @param paragraph a paragraph of text with optional character and paragraph attribute information
   122      * @param paragraph a paragraph of text with optional character and paragraph attribute information
   123      *
   123      *
   124      * @see TextAttribute#BIDI_EMBEDDING
   124      * @see java.awt.font.TextAttribute#BIDI_EMBEDDING
   125      * @see TextAttribute#NUMERIC_SHAPING
   125      * @see java.awt.font.TextAttribute#NUMERIC_SHAPING
   126      * @see TextAttribute#RUN_DIRECTION
   126      * @see java.awt.font.TextAttribute#RUN_DIRECTION
   127      */
   127      */
   128     public Bidi(AttributedCharacterIterator paragraph) {
   128     public Bidi(AttributedCharacterIterator paragraph) {
   129         if (paragraph == null) {
   129         if (paragraph == null) {
   130             throw new IllegalArgumentException("paragraph is null");
   130             throw new IllegalArgumentException("paragraph is null");
   131         }
   131         }