Module  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接口。
        重写:
        getAccessibleTextAccessibleContext
        结果
        这个对象
        另请参见:
        AccessibleText
      • getIndexAtPoint

        public int getIndexAtPoint​(Point p)
        给定本地坐标点,返回该点下的字符从零开始的索引。 如果该点无效,此方法返回-1。
        Specified by:
        getIndexAtPoint在接口 AccessibleText
        参数
        p - 本地坐标点
        结果
        点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