Lines Matching refs:link

82      * @param link String name of the file.
83 * @param where Position of the link in the file. Character '#' is not
85 * @param label Tag for the link.
88 public void printHyperLink(String link, String where,
90 print(getHyperLinkString(link, where, label, strong, "", "", ""));
96 * @param link String name of the file.
97 * @param where Position of the link in the file. Character '#' is not
99 * @param label Tag for the link.
101 public void printHyperLink(String link, String where, String label) {
102 printHyperLink(link, where, label, false);
108 * @param link String name of the file.
109 * @param where Position of the link in the file. Character '#' is not
111 * @param label Tag for the link.
115 public void printHyperLink(String link, String where,
118 print(getHyperLinkString(link, where, label, strong, stylename, "", ""));
124 * @param link String name of the file.
125 * @param where Position of the link in the file. Character '#' is not
127 * @param label Tag for the link.
131 public String getHyperLinkString(String link, String where,
133 return getHyperLinkString(link, where, label, strong, "", "", "");
139 * @param link String name of the file.
140 * @param where Position of the link in the file. Character '#' is not
142 * @param label Tag for the link.
147 public String getHyperLinkString(String link, String where,
150 return getHyperLinkString(link, where, label, strong, stylename, "", "");
156 * @param link String name of the file.
157 * @param where Position of the link in the file. Character '#' is not
159 * @param label Tag for the link.
160 * @return a content tree for the hyper link
162 public Content getHyperLink(String link, String where,
164 return getHyperLink(link, where, label, "", "");
170 * @param link String name of the file.
171 * @param where Position of the link in the file. Character '#' is not
173 * @param label Tag for the link.
176 * @param title String that describes the link's content for accessibility.
180 public String getHyperLinkString(String link, String where,
185 retlink.append(link);
220 * @param link String name of the file.
221 * @param where Position of the link in the file. Character '#' is not
223 * @param label Tag for the link.
224 * @param title String that describes the link's content for accessibility.
226 * @return a content tree for the hyper link.
228 public Content getHyperLink(String link, String where,
231 link += "#" + where;
233 HtmlTree anchor = HtmlTree.A(link, label);
246 * @param link String name of the file
247 * @param label Label for the link
250 public Content getHyperLink(String link, Content label) {
251 return getHyperLink(link, "", label);
255 * Get link string without positioning in the file.
257 * @param link String name of the file.
258 * @param label Tag for the link.
259 * @return Strign Hyper link.
261 public String getHyperLinkString(String link, String label) {
262 return getHyperLinkString(link, "", label, false);
369 * Calls {@link #printBodyHtmlEnd()} method.