Lines Matching defs:body

72      * @param body the document tree to which the navigation bar header will be added
74 protected abstract void addNavigationBarHeader(Content body);
79 * @param body the document tree to which the navigation bar footer will be added
81 protected abstract void addNavigationBarFooter(Content body);
86 * @param body the document tree to which the overview header will be added
88 protected abstract void addOverviewHeader(Content body);
96 * @param body the document tree to which the packages list will be added
99 String tableSummary, Content body);
111 Content body = getBody(includeScript, getWindowTitle(windowOverview));
112 addNavigationBarHeader(body);
113 addOverviewHeader(body);
114 addIndex(body);
115 addOverview(body);
116 addNavigationBarFooter(body);
118 configuration.doctitle), includeScript, body);
124 * @param body the document tree to which the overview will be added
126 protected void addOverview(Content body) throws IOException {
132 * @param body the document tree to which the index will be added
134 protected void addIndex(Content body) {
138 configuration.getText("doclet.packages")), body);
143 * the sub-classes. Adds it to the body HtmlTree
148 * @param body the document tree to which the index contents will be added
151 String tableSummary, Content body) {
160 body.addContent(htmlTree);
161 addPackagesList(packages, text, tableSummary, body);
168 * @param body the document tree to which the title will be added
170 protected void addConfigurationTitle(Content body) {
176 body.addContent(div);