Searched refs:linkIndex (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleHypertext.java66 * @param linkIndex within the links of this Hypertext
69 public abstract AccessibleHyperlink getLink(int linkIndex); argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJEditorPane.java2032 * @param linkIndex into the set of hyperlinks for this hypertext doc.
2035 public AccessibleHyperlink getLink(int linkIndex) { argument
2039 if (linkIndex >= 0 && linkIndex < hyperlinks.size()) {
2040 return hyperlinks.elementAt(linkIndex);
2050 * @param linkIndex into the set of hyperlinks for this hypertext doc.
2053 public String getLinkText(int linkIndex) { argument
2057 Element e = (Element) hyperlinks.elementAt(linkIndex);

Completed in 269 milliseconds