Lines Matching defs:htmltree

75      * @param htmltree the content tree to which the parameters will be added.
77 protected void addTypeParameters(ExecutableElement member, Content htmltree) {
80 htmltree.addContent(typeParameters);
81 htmltree.addContent(Contents.SPACE);
187 * @param htmltree the content tree to which the parameters information will be added.
189 protected void addParameters(ExecutableElement member, Content htmltree, int indentSize) {
190 addParameters(member, true, htmltree, indentSize);
198 * @param htmltree the content tree to which the parameters information will be added.
201 boolean includeAnnotations, Content htmltree, int indentSize) {
202 htmltree.addContent(Contents.ZERO_WIDTH_SPACE);
203 htmltree.addContent("(");
210 addReceiverAnnotations(member, rcvrType, annotationMirrors, htmltree);
215 htmltree.addContent(sep);
222 member, param, htmltree);
224 htmltree.addContent(DocletConstants.NL);
225 htmltree.addContent(indent);
229 (paramstart == parameters.size() - 1) && member.isVarArgs(), htmltree);
235 htmltree.addContent(",");
236 htmltree.addContent(DocletConstants.NL);
237 htmltree.addContent(indent);
241 htmltree);
243 htmltree.addContent(DocletConstants.NL);
244 htmltree.addContent(indent);
248 htmltree);
250 htmltree.addContent(")");
257 * @param htmltree the content tree to which the exceptions information will be added.
259 protected void addExceptions(ExecutableElement member, Content htmltree, int indentSize) {
263 htmltree.addContent(DocletConstants.NL);
264 htmltree.addContent(indent);
265 htmltree.addContent("throws ");
268 htmltree.addContent(link);
270 htmltree.addContent(",");
271 htmltree.addContent(DocletConstants.NL);
272 htmltree.addContent(indent);
275 htmltree.addContent(exceptionLink);