示例#1
0
 public TagGenerator(
     IDataProcessor dataProcessor,
     Preprocessor wordsPreprocessor,
     IWordsAnalyzer wordsAnalyzer,
     ITagLayouter tagLayouter,
     IFileReader fileReader)
 {
     this.dataProcessor     = dataProcessor;
     this.wordsPreprocessor = wordsPreprocessor;
     this.wordsAnalyzer     = wordsAnalyzer;
     this.tagLayouter       = tagLayouter;
     this.fileReader        = fileReader;
 }
示例#2
0
 public SimpleTagsPainter(ITagLayouter layouter)
 {
     this.layouter = layouter;
 }