< prev index next >

jdk/src/java.base/share/classes/sun/text/bidi/BidiRun.java

Print this page

        

*** 53,63 **** * <p>This class has no public constructor, and its members cannot be * modified by users. * * @see com.ibm.icu.text.Bidi */ ! public class BidiRun { int start; /* first logical position of the run */ int limit; /* last visual position of the run +1 */ int insertRemove; /* if >0, flags for inserting LRM/RLM before/after run, if <0, count of bidi controls within run */ --- 53,63 ---- * <p>This class has no public constructor, and its members cannot be * modified by users. * * @see com.ibm.icu.text.Bidi */ ! class BidiRun { int start; /* first logical position of the run */ int limit; /* last visual position of the run +1 */ int insertRemove; /* if >0, flags for inserting LRM/RLM before/after run, if <0, count of bidi controls within run */
*** 104,114 **** } /** * Get level of run */ ! public byte getEmbeddingLevel() { return level; } /** --- 104,114 ---- } /** * Get level of run */ ! byte getEmbeddingLevel() { return level; } /**
< prev index next >