Lines Matching refs:memberSummaryTree

200      * @param memberSummaryTree the content tree to which the documentation will be added
202 public void buildEnumConstantsSummary(XMLNode node, Content memberSummaryTree) {
207 addSummary(writer, visibleMemberMap, false, memberSummaryTree);
214 * @param memberSummaryTree the content tree to which the documentation will be added
216 public void buildAnnotationTypeOptionalMemberSummary(XMLNode node, Content memberSummaryTree) {
221 addSummary(writer, visibleMemberMap, false, memberSummaryTree);
228 * @param memberSummaryTree the content tree to which the documentation will be added
230 public void buildAnnotationTypeRequiredMemberSummary(XMLNode node, Content memberSummaryTree) {
235 addSummary(writer, visibleMemberMap, false, memberSummaryTree);
242 * @param memberSummaryTree the content tree to which the documentation will be added
244 public void buildFieldsSummary(XMLNode node, Content memberSummaryTree) {
249 addSummary(writer, visibleMemberMap, true, memberSummaryTree);
255 public void buildPropertiesSummary(XMLNode node, Content memberSummaryTree) {
260 addSummary(writer, visibleMemberMap, true, memberSummaryTree);
267 * @param memberSummaryTree the content tree to which the documentation will be added
269 public void buildNestedClassesSummary(XMLNode node, Content memberSummaryTree) {
274 addSummary(writer, visibleMemberMap, true, memberSummaryTree);
281 * @param memberSummaryTree the content tree to which the documentation will be added
283 public void buildMethodsSummary(XMLNode node, Content memberSummaryTree) {
288 addSummary(writer, visibleMemberMap, true, memberSummaryTree);
295 * @param memberSummaryTree the content tree to which the documentation will be added
297 public void buildConstructorsSummary(XMLNode node, Content memberSummaryTree) {
302 addSummary(writer, visibleMemberMap, false, memberSummaryTree);
488 * @param memberSummaryTree the content tree to which the documentation will be added
492 Content memberSummaryTree) {
499 classDoc, memberSummaryTree);
503 memberSummaryTree.addContent(writer.getMemberTree(memberTree));