예제 #1
0
 public HtmlDocumentationBuilder(Configuration configuration, DirectoryTreeCrawler featureCrawler, HtmlDocumentFormatter htmlDocumentFormatter, HtmlResourceWriter htmlResourceWriter)
 {
     this.configuration = configuration;
     this.featureCrawler = featureCrawler;
     this.htmlDocumentFormatter = htmlDocumentFormatter;
     this.htmlResourceWriter = htmlResourceWriter;
 }
예제 #2
0
 public ExcelDocumentationBuilder(Configuration configuration, DirectoryTreeCrawler featureCrawler,
                                  ExcelFeatureFormatter excelFeatureFormatter,
                                  ExcelSheetNameGenerator excelSheetNameGenerator,
                                  ExcelTableOfContentsFormatter excelTableOfContentsFormatter)
 {
     this.configuration = configuration;
     this.featureCrawler = featureCrawler;
     this.excelFeatureFormatter = excelFeatureFormatter;
     this.excelSheetNameGenerator = excelSheetNameGenerator;
     this.excelTableOfContentsFormatter = excelTableOfContentsFormatter;
 }