src/share/classes/com/sun/tools/doclets/formats/html/markup/HtmlDocWriter.java

changeset 1746
bd51ca92c013
parent 1740
ce4f0769b4b2
child 1747
df4f44800923
equal deleted inserted replaced
1745:937aa020c667 1746:bd51ca92c013
69 /** 69 /**
70 * Accessor for configuration. 70 * Accessor for configuration.
71 */ 71 */
72 public abstract Configuration configuration(); 72 public abstract Configuration configuration();
73 73
74 /**
75 * Return Html hyperlink string.
76 *
77 * @param link String name of the file.
78 * @param label Tag for the link.
79 * @return String Hyper Link.
80 */
81 public String getHyperLinkString(DocPath link, String label) {
82 return getHyperLinkString(link, label, false, "", "", "");
83 }
84
85 public Content getHyperLink(DocPath link, String label) { 74 public Content getHyperLink(DocPath link, String label) {
86 return getHyperLink(link, new StringContent(label), false, "", "", ""); 75 return getHyperLink(link, new StringContent(label), false, "", "", "");
87 }
88
89 public String getHyperLinkString(DocLink link, String label) {
90 return getHyperLinkString(link, label, false, "", "", "");
91 } 76 }
92 77
93 /** 78 /**
94 * Get Html Hyper Link string. 79 * Get Html Hyper Link string.
95 * 80 *

mercurial