-
- All Superinterfaces:
-
AccessibleText
public interface AccessibleHypertext extends AccessibleText
AccessibleHypertext
类是在显示器上显示超文本信息的所有类的基类。 该类提供了辅助技术通过其内容,属性和空间位置访问该文本的标准机制。 它还提供了操纵超链接的标准机制。 应用程序可确定对象是否支持AccessibleHypertext
通过首先获得接口其AccessibleContext
(见Accessible
),然后调用AccessibleContext.getAccessibleText()
的方法AccessibleContext
。 如果返回值是扩展为AccessibleHypertext
的类,则该对象支持AccessibleHypertext
。
-
-
Field Summary
-
Fields inherited from interface javax.accessibility.AccessibleText
CHARACTER, SENTENCE, WORD
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 AccessibleHyperlink
getLink(int linkIndex)
返回此超文本文件的第n个链接。int
getLinkCount()
返回此超文本文件中的链接数。int
getLinkIndex(int charIndex)
将索引返回到与此字符索引相关联的超链接数组中,如果没有与此索引相关联的超链接,则返回-1。-
Methods inherited from interface 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
- 文本中的索引 - 结果
- 索引到这个超文本文档的超链接集
-
-