< prev index next >

src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/builders/ModuleSummaryBuilder.java

Print this page




 163     protected void buildPackagesSummary(Content summaryContentTree) {
 164         moduleWriter.addPackagesSummary(summaryContentTree);
 165     }
 166 
 167     /**
 168      * Build the services summary.
 169      *
 170      * @param summaryContentTree the content tree to which the summaries will be added
 171      */
 172     protected void buildServicesSummary(Content summaryContentTree) {
 173         moduleWriter.addServicesSummary(summaryContentTree);
 174     }
 175 
 176     /**
 177      * Build the description for the module.
 178      *
 179      * @param moduleContentTree the tree to which the module description will
 180      *                           be added
 181      */
 182     protected void buildModuleDescription(Content moduleContentTree) {
 183         if (!configuration.nocomment) {
 184             moduleWriter.addModuleDescription(moduleContentTree);
 185         }
 186     }
 187 
 188     /**
 189      * Build the tags of the summary.
 190      *
 191      * @param moduleContentTree the tree to which the module tags will be added
 192      */
 193     protected void buildModuleTags(Content moduleContentTree) {
 194         if (!configuration.nocomment) {
 195             moduleWriter.addModuleTags(moduleContentTree);
 196         }
 197     }
 198 }


 163     protected void buildPackagesSummary(Content summaryContentTree) {
 164         moduleWriter.addPackagesSummary(summaryContentTree);
 165     }
 166 
 167     /**
 168      * Build the services summary.
 169      *
 170      * @param summaryContentTree the content tree to which the summaries will be added
 171      */
 172     protected void buildServicesSummary(Content summaryContentTree) {
 173         moduleWriter.addServicesSummary(summaryContentTree);
 174     }
 175 
 176     /**
 177      * Build the description for the module.
 178      *
 179      * @param moduleContentTree the tree to which the module description will
 180      *                           be added
 181      */
 182     protected void buildModuleDescription(Content moduleContentTree) {
 183         if (!options.noComment) {
 184             moduleWriter.addModuleDescription(moduleContentTree);
 185         }
 186     }
 187 
 188     /**
 189      * Build the tags of the summary.
 190      *
 191      * @param moduleContentTree the tree to which the module tags will be added
 192      */
 193     protected void buildModuleTags(Content moduleContentTree) {
 194         if (!options.noComment) {
 195             moduleWriter.addModuleTags(moduleContentTree);
 196         }
 197     }
 198 }
< prev index next >