Lines Matching refs:where

83      * @param where Position of the link in the file. Character '#' is not
88 public void printHyperLink(String link, String where,
90 print(getHyperLinkString(link, where, label, strong, "", "", ""));
97 * @param where Position of the link in the file. Character '#' is not
101 public void printHyperLink(String link, String where, String label) {
102 printHyperLink(link, where, label, false);
109 * @param where Position of the link in the file. Character '#' is not
115 public void printHyperLink(String link, String where,
118 print(getHyperLinkString(link, where, label, strong, stylename, "", ""));
125 * @param where Position of the link in the file. Character '#' is not
131 public String getHyperLinkString(String link, String where,
133 return getHyperLinkString(link, where, label, strong, "", "", "");
140 * @param where Position of the link in the file. Character '#' is not
147 public String getHyperLinkString(String link, String where,
150 return getHyperLinkString(link, where, label, strong, stylename, "", "");
157 * @param where Position of the link in the file. Character '#' is not
162 public Content getHyperLink(String link, String where,
164 return getHyperLink(link, where, label, "", "");
171 * @param where Position of the link in the file. Character '#' is not
180 public String getHyperLinkString(String link, String where,
186 if (where != null && where.length() != 0) {
188 retlink.append(where);
221 * @param where Position of the link in the file. Character '#' is not
228 public Content getHyperLink(String link, String where,
230 if (where != null && where.length() != 0) {
231 link += "#" + where;