Lines Matching defs:htmltree

281      * @param htmltree the documentation tree to which the tags will be added
283 protected void addTagsInfo(Doc doc, Content htmltree) {
300 htmltree.addContent(dl);
416 * @param body the body htmltree to be included in the document
1759 * @param htmltree the content tree to which the link will be added
1761 public void addSrcLink(ProgramElementDoc doc, Content label, Content htmltree) {
1774 htmltree.addContent(linkContent);
2248 * @param htmltree the content tree to which the comment will be added
2250 public void addInlineComment(Doc doc, Tag tag, Content htmltree) {
2251 addCommentTags(doc, tag.inlineTags(), false, false, htmltree);
2263 * @param htmltree the content tree to which the comment will be added
2265 public void addInlineDeprecatedComment(Doc doc, Tag tag, Content htmltree) {
2266 addCommentTags(doc, tag.inlineTags(), true, false, htmltree);
2277 * @param htmltree the documentation tree to which the summary will be added
2279 public void addSummaryComment(Doc doc, Content htmltree) {
2280 addSummaryComment(doc, doc.firstSentenceTags(), htmltree);
2292 * @param htmltree the documentation tree to which the summary will be added
2294 public void addSummaryComment(Doc doc, Tag[] firstSentenceTags, Content htmltree) {
2295 addCommentTags(doc, firstSentenceTags, false, true, htmltree);
2306 public void addSummaryDeprecatedComment(Doc doc, Tag tag, Content htmltree) {
2307 addCommentTags(doc, tag.firstSentenceTags(), true, true, htmltree);
2319 * @param htmltree the documentation tree to which the inline comments will be added
2321 public void addInlineComment(Doc doc, Content htmltree) {
2322 addCommentTags(doc, doc.inlineTags(), false, false, htmltree);
2353 * @param htmltree the documentation tree to which the comment tags will be added
2356 boolean first, Content htmltree) {
2365 htmltree.addContent(div);
2369 htmltree.addContent(div);
2372 htmltree.addContent(getSpace());
2669 * @param htmltree the documentation tree to which the annotation info will be
2672 public void addAnnotationInfo(PackageDoc packageDoc, Content htmltree) {
2673 addAnnotationInfo(packageDoc, packageDoc.annotations(), htmltree);
2689 * @param htmltree the content tree to which the annotation types will be added
2691 public void addAnnotationInfo(ProgramElementDoc doc, Content htmltree) {
2692 addAnnotationInfo(doc, doc.annotations(), htmltree);
2734 * @param htmltree the documentation tree to which the annotation info will be
2738 Content htmltree) {
2739 addAnnotationInfo(0, doc, descList, true, htmltree);
2768 * @param htmltree the documentation tree to which the annotation info will be
2772 AnnotationDesc[] descList, boolean lineBreak, Content htmltree) {
2780 htmltree.addContent(annotationContent);