本文整理汇总了Java中javax.accessibility.AccessibleHyperlink类的典型用法代码示例。如果您正苦于以下问题:Java AccessibleHyperlink类的具体用法?Java AccessibleHyperlink怎么用?Java AccessibleHyperlink使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AccessibleHyperlink类属于javax.accessibility包,在下文中一共展示了AccessibleHyperlink类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getLink
import javax.accessibility.AccessibleHyperlink; //导入依赖的package包/类
/**
* Returns the <code>i</code>-th hyperlink in the document or
* <code>null</code> if there is no hyperlink with the specified index.
*
* @param i the index of the hyperlink to return
*
* @return the <code>i</code>-th hyperlink in the document or
* <code>null</code> if there is no hyperlink with the specified
* index
*/
public AccessibleHyperlink getLink(int i)
{
HTMLDocument doc = (HTMLDocument) getDocument();
HTMLDocument.Iterator linkIter = doc.getIterator(HTML.Tag.A);
int count = 0;
while (linkIter.isValid())
{
count++;
if (count == i)
break;
linkIter.next();
}
if (linkIter.isValid())
{
int offset = linkIter.getStartOffset();
// TODO: I fetch the element for the link via getCharacterElement().
// I am not sure that this is correct, maybe we must use
// getParagraphElement()?
Element el = doc.getCharacterElement(offset);
HTMLLink link = new HTMLLink(el);
return link;
}
else
return null;
}
开发者ID:vilie,项目名称:javify,代码行数:36,代码来源:JEditorPane.java
示例2: getLink
import javax.accessibility.AccessibleHyperlink; //导入依赖的package包/类
public AccessibleHyperlink getLink(int linkIndex) throws NotImplementedException {
throw new NotImplementedException();
}
开发者ID:shannah,项目名称:cn1,代码行数:4,代码来源:JEditorPane.java
注:本文中的javax.accessibility.AccessibleHyperlink类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论