模块  java.desktop
软件包  java.awt

Class TextComponent.AccessibleAWTTextComponent

    • 构造方法详细信息

      • AccessibleAWTTextComponent

        public AccessibleAWTTextComponent()
        构造一个AccessibleAWTTextComponent。 添加侦听器以跟踪插入符更改。
    • 方法详细信息

      • textValueChanged

        public void textValueChanged​(TextEvent textEvent)
        TextListener文本值更改的通知。
        Specified by:
        textValueChanged ,界面 TextListener
        参数
        textEvent - 要处理的事件
      • getAccessibleText

        public AccessibleText getAccessibleText()
        获取与此对象关联的AccessibleText。 在为此类实现Java Accessibility API时,返回此对象,该对象负责代表自身实现AccessibleText接口。
        重写:
        getAccessibleText在类 AccessibleContext
        结果
        这个对象
        另请参见:
        AccessibleText
      • getIndexAtPoint

        public int getIndexAtPoint​(Point p)
        给定本地坐标中的一个点,返回该点下该字符的从零开始的索引。 如果该点无效,则此方法返回-1。
        Specified by:
        getIndexAtPoint在界面 AccessibleText
        参数
        p - 本地坐标中的点
        结果
        Point p下字符的从零开始的索引。
      • getCharacterBounds

        public Rectangle getCharacterBounds​(int i)
        确定给定索引处字符的边界框。 边界以本地坐标返回。 如果索引无效,则返回空矩形。
        Specified by:
        getCharacterBounds在界面 AccessibleText
        参数
        i - String> = 0的索引
        结果
        角色边界框的屏幕坐标
      • getCharCount

        public int getCharCount()
        返回字符数(有效索引)
        Specified by:
        getCharCount在界面 AccessibleText
        结果
        字符数> = 0
      • getCaretPosition

        public int getCaretPosition()
        返回插入符号从零开始的偏移量。 注意:插入符右侧的字符将具有与偏移量相同的索引值(插入符号位于两个字符之间)。
        Specified by:
        getCaretPosition在界面 AccessibleText
        结果
        插入符号从零开始的偏移量。
      • getCharacterAttribute

        public AttributeSet getCharacterAttribute​(int i)
        返回给定字符的AttributeSet(在给定索引处)。
        Specified by:
        getCharacterAttribute ,界面 AccessibleText
        参数
        i - 文本中从零开始的索引
        结果
        角色的AttributeSet
      • getSelectionStart

        public int getSelectionStart()
        返回所选文本中的起始偏移量。 如果没有选择,但有一个插入符号,则开始和结束偏移将是相同的。 如果文本为空则返回0,如果没有选择则返回插入位置。
        Specified by:
        getSelectionStart在接口 AccessibleText
        结果
        索引进入选择开始的文本> = 0
      • getSelectionEnd

        public int getSelectionEnd()
        返回所选文本中的结束偏移量。 如果没有选择,但有一个插入符号,则开始和结束偏移将是相同的。 如果文本为空则返回0,如果没有选择则返回插入位置。
        Specified by:
        getSelectionEnd在界面 AccessibleText
        结果
        索引到选择结尾的文本> = 0
      • getSelectedText

        public String getSelectedText()
        返回所选文本的部分。
        Specified by:
        getSelectedText在界面 AccessibleText
        结果
        文本,如果没有选择则为null
      • getAtIndex

        public String getAtIndex​(int part,
                                 int index)
        返回给定索引处的String。
        Specified by:
        getAtIndex在界面 AccessibleText
        参数
        part - 要检索的AccessibleText.CHARACTER,AccessibleText.WORD或AccessibleText.SENTENCE
        index - 文本中的索引> = 0
        结果
        字母,单词或句子,无效索引或部分为null
      • getAfterIndex

        public String getAfterIndex​(int part,
                                    int index)
        返回给定索引后的String。
        Specified by:
        getAfterIndex在界面 AccessibleText
        参数
        part - 要检索的AccessibleText.CHARACTER,AccessibleText.WORD或AccessibleText.SENTENCE
        index - 文本中的索引> = 0
        结果
        字母,单词或句子,无效索引或部分为null
      • getBeforeIndex

        public String getBeforeIndex​(int part,
                                     int index)
        返回给定索引之前的String。
        Specified by:
        getBeforeIndex在界面 AccessibleText
        参数
        part - 要检索的AccessibleText.CHARACTER,AccessibleText.WORD或AccessibleText.SENTENCE
        index - 文本中的索引> = 0
        结果
        字母,单词或句子,无效索引或部分为null