-
- All Superinterfaces:
-
AccessibleText
public interface AccessibleHypertext extends AccessibleText
AccessibleHypertext
类是在显示器上显示超文本信息的所有类的基类。 此类为辅助技术提供标准机制,以通过其内容,属性和空间位置访问该文本。 它还提供了操作超链接的标准机制。 应用程序可以通过首先获取AccessibleContext
(参见Accessible
)然后调用AccessibleContext.getAccessibleText()
方法AccessibleContext
来确定对象是否支持AccessibleHypertext
接口。 如果返回值是扩展AccessibleHypertext
的类,则该对象支持AccessibleHypertext
。
-
-
字段汇总
-
Fields declared in interface javax.accessibility.AccessibleText
CHARACTER, SENTENCE, WORD
-
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 AccessibleHyperlink
getLink(int linkIndex)
返回此超文本文档的第n个链接。int
getLinkCount()
返回此超文本文档中的链接数。int
getLinkIndex(int charIndex)
将索引返回到与此字符索引关联的超链接数组,如果没有与此索引关联的超链接,则返回-1。-
声明方法的接口 javax.accessibility.AccessibleText
getAfterIndex, getAtIndex, getBeforeIndex, getCaretPosition, getCharacterAttribute, getCharacterBounds, getCharCount, getIndexAtPoint, getSelectedText, getSelectionEnd, getSelectionStart
-
-
-
-
方法详细信息
-
getLinkCount
int getLinkCount()
返回此超文本文档中的链接数。- 结果
- 此超文本文档中的链接数
-
getLink
AccessibleHyperlink getLink(int linkIndex)
返回此超文本文档的第n个链接。- 参数
-
linkIndex
- 在此超文本的链接中 - 结果
- 封装第n个链接的链接对象
-
getLinkIndex
int getLinkIndex(int charIndex)
将索引返回到与此字符索引关联的超链接数组,如果没有与此索引关联的超链接,则返回-1。- 参数
-
charIndex
- 文本中的索引 - 结果
- 索引到此超文本文档的超链接集
-
-