Module  java.desktop
软件包  javax.swing.text

Class JTextComponent.AccessibleJTextComponent

    • 构造方法详细信息

      • AccessibleJTextComponent

        public AccessibleJTextComponent​()
        构造AccessibleJTextComponent。 添加一个监听器来跟踪插入符号的更改。
    • 方法详细信息

      • caretUpdate

        public void caretUpdate​(CaretEvent e)
        处理插入符更新(触发适当的属性更改事件,它们是AccessibleContext.ACCESSIBLE_CARET_PROPERTY和AccessibleContext.ACCESSIBLE_SELECTION_PROPERTY)。 这可以在内部跟踪点位置。 当插入符号移动时,内部位置在触发事件之后被更新。
        Specified by:
        caretUpdate接口 CaretListener
        参数
        e - CaretEvent
      • insertUpdate

        public void insertUpdate​(DocumentEvent e)
        处理文档插入(触发适当的属性更改事件AccessibleContext.ACCESSIBLE_TEXT_PROPERTY)。 通过事件跟踪更改的偏移量。
        Specified by:
        insertUpdate接口 DocumentListener
        参数
        e - DocumentEvent
      • removeUpdate

        public void removeUpdate​(DocumentEvent e)
        处理文档删除(触发适当的属性更改事件,即AccessibleContext.ACCESSIBLE_TEXT_PROPERTY)。 通过事件跟踪更改的偏移量。
        Specified by:
        removeUpdate在接口 DocumentListener
        参数
        e - DocumentEvent
      • changedUpdate

        public void changedUpdate​(DocumentEvent e)
        处理文档删除(触发适当的属性更改事件,即AccessibleContext.ACCESSIBLE_TEXT_PROPERTY)。 通过事件跟踪更改的偏移量。
        Specified by:
        changedUpdate在接口 DocumentListener
        参数
        e - DocumentEvent
      • 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)
        将给定索引处的字符的边框确定为字符串。 边界以局部坐标返回。 如果索引无效,则返回空矩形。 如果JTextComponent包含在JScrollPane中,则返回的屏幕坐标为“未旋转坐标”,在这种情况下,生成的矩形应与父坐标组合。 一个很好的算法是:
          Accessible a:
         AccessibleText at = a.getAccessibleText();
         AccessibleComponent ac = a.getAccessibleComponent();
         Rectangle r = at.getCharacterBounds();
         Point p = ac.getLocation();
         r.x += p.x;
         r.y += p.y; 
        注意:JTextComponent必须具有有效的大小(例如,已经被添加到其父容器的祖先容器是有效的顶级窗口),以使该方法能够返回有意义的(非空值)值。
        Specified by:
        getCharacterBounds在接口 AccessibleText
        参数
        i - 字符串中的索引值为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 - 要检索的CHARACTER,WORD或SENTENCE
        index - 文本中的索引
        结果
        信,字或句子。
      • getAfterIndex

        public String getAfterIndex​(int part,
                                    int index)
        返回给定索引后的String。 词之间的空格被视为一个词。
        Specified by:
        getAfterIndex在接口 AccessibleText
        参数
        part - 要检索的CHARACTER,WORD或SENTENCE
        index - 文本中的索引
        结果
        信,字或句子。
      • getBeforeIndex

        public String getBeforeIndex​(int part,
                                     int index)
        返回给定索引之前的String。 词之间的空白被对待一个字。
        Specified by:
        getBeforeIndex接口 AccessibleText
        参数
        part - 要检索的CHARACTER,WORD或SENTENCE
        index - 文本中的索引
        结果
        信,字或句子。
      • setTextContents

        public void setTextContents​(String s)
        将文本内容设置为指定的字符串。
        Specified by:
        setTextContents在接口 AccessibleEditableText
        参数
        s - 设置文本内容的字符串
        从以下版本开始:
        1.4
      • insertTextAtIndex

        public void insertTextAtIndex​(int index,
                                      String s)
        在指定的索引处插入指定的字符串
        Specified by:
        insertTextAtIndex在接口 AccessibleEditableText
        参数
        index - 将插入字符串的文本中的索引
        s - 要插入文本的字符串
        从以下版本开始:
        1.4
      • getTextRange

        public String getTextRange​(int startIndex,
                                   int endIndex)
        返回两个索引之间的文本字符串。
        Specified by:
        getTextRange在接口 AccessibleEditableText
        Specified by:
        getTextRange在接口 AccessibleExtendedText
        参数
        startIndex - 文本中的起始索引
        endIndex - 文本中的结束索引
        结果
        索引之间的文本字符串
        从以下版本开始:
        1.4
      • delete

        public void delete​(int startIndex,
                           int endIndex)
        删除两个索引之间的文本
        Specified by:
        delete在接口 AccessibleEditableText
        参数
        startIndex - 文本中的起始索引
        endIndex - 文本中的结束索引
        从以下版本开始:
        1.4
      • cut

        public void cut​(int startIndex,
                        int endIndex)
        将两个索引之间的文本剪切到系统剪贴板中。
        Specified by:
        cut在接口 AccessibleEditableText
        参数
        startIndex - 文本中的起始索引
        endIndex - 文本中的结束索引
        从以下版本开始:
        1.4
      • paste

        public void paste​(int startIndex)
        将文本从系统剪贴板粘贴到从指定索引开始的文本。
        Specified by:
        paste在接口 AccessibleEditableText
        参数
        startIndex - 文本中的起始索引
        从以下版本开始:
        1.4
      • replaceText

        public void replaceText​(int startIndex,
                                int endIndex,
                                String s)
        用指定的字符串替换两个索引之间的文本。
        Specified by:
        replaceText在接口 AccessibleEditableText
        参数
        startIndex - 文本中的起始索引
        endIndex - 文本中的结束索引
        s - 用于替换两个索引之间的文本的字符串
        从以下版本开始:
        1.4
      • selectText

        public void selectText​(int startIndex,
                               int endIndex)
        选择两个索引之间的文本。
        Specified by:
        selectText在接口 AccessibleEditableText
        参数
        startIndex - 文本中的起始索引
        endIndex - 文本中的结束索引
        从以下版本开始:
        1.4
      • setAttributes

        public void setAttributes​(int startIndex,
                                  int endIndex,
                                  AttributeSet as)
        为两个索引之间的文本设置属性。
        Specified by:
        setAttributes接口 AccessibleEditableText
        参数
        startIndex - 文本中的起始索引
        endIndex - 文本中的结束索引
        as - 属性集
        从以下版本开始:
        1.4
        另请参见:
        AttributeSet
      • getTextBounds

        public Rectangle getTextBounds​(int startIndex,
                                       int endIndex)
        返回 Rectangle包含两个指标之间的文本。
        Specified by:
        getTextBounds在接口 AccessibleExtendedText
        参数
        startIndex - 文本中的起始索引
        endIndex - 文本中的结束索引
        结果
        如果索引有效,文本的边界矩形。 否则返回null
        从以下版本开始:
        1.6
      • getAccessibleActionCount

        public int getAccessibleActionCount​()
        返回此对象中可用操作的数量如果有多个可访问的操作数,则第一个被视为对象的“默认”操作。
        Specified by:
        getAccessibleActionCount在接口 AccessibleAction
        结果
        该对象中基于零的操作数
        从以下版本开始:
        1.4
      • doAccessibleAction

        public boolean doAccessibleAction​(int i)
        对对象执行指定的Action
        Specified by:
        doAccessibleAction在接口 AccessibleAction
        参数
        i - 基于零的操作索引
        结果
        如果行动执行,则为真; 否则为虚假。
        从以下版本开始:
        1.4
        另请参见:
        getAccessibleActionCount()