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

changeset 1737
7a9ef837e57f
parent 1736
74cd21f2c2fe
child 1738
6ea964c78845
equal deleted inserted replaced
1736:74cd21f2c2fe 1737:7a9ef837e57f
124 * @param param the parameter that needs to be written. 124 * @param param the parameter that needs to be written.
125 * @param isVarArg true if this is a link to var arg. 125 * @param isVarArg true if this is a link to var arg.
126 * @param tree the content tree to which the parameter information will be added. 126 * @param tree the content tree to which the parameter information will be added.
127 */ 127 */
128 protected void addParam(ExecutableMemberDoc member, Parameter param, 128 protected void addParam(ExecutableMemberDoc member, Parameter param,
129 boolean isVarArg, Content tree) { 129 boolean isVarArg, Content tree) {
130 if (param.type() != null) { 130 if (param.type() != null) {
131 Content link = writer.getLink(new LinkInfoImpl( 131 Content link = writer.getLink(new LinkInfoImpl(
132 configuration, LinkInfoImpl.Kind.EXECUTABLE_MEMBER_PARAM, 132 configuration, LinkInfoImpl.Kind.EXECUTABLE_MEMBER_PARAM,
133 param.type(), isVarArg)); 133 param.type(), isVarArg));
134 tree.addContent(link); 134 tree.addContent(link);

mercurial