Exemplo n.º 1
0
 public PackageTokeniser(
     IFileContentProcessor fileContentProcessor, 
     IProgressNotifier progressNotifier, 
     IRenameFileProcessor renameFileProcessor, 
     IBinaryFileFilter binaryFileFilter)
 {
     this.fileContentProcessor = fileContentProcessor;
     this.binaryFileFilter = binaryFileFilter;
     this.progressNotifier = progressNotifier;
     this.renameFileProcessor = renameFileProcessor;
 }
Exemplo n.º 2
0
 public PackageTokeniser(
     IFileContentProcessor fileContentProcessor,
     IProgressNotifier progressNotifier,
     IRenameFileProcessor renameFileProcessor,
     IBinaryFileFilter binaryFileFilter)
 {
     this.fileContentProcessor = fileContentProcessor;
     this.binaryFileFilter     = binaryFileFilter;
     this.progressNotifier     = progressNotifier;
     this.renameFileProcessor  = renameFileProcessor;
 }
Exemplo n.º 3
0
 public TemplateTokeniser(IRenameFileProcessor renameFileProcessor, IFileContentProcessor fileContentProcessor, [ImportMany] IEnumerable<IFunctionTokenizer> FunctionTokenizers)
 {
     this.renameFileProcessor = renameFileProcessor;
     this.fileContentProcessor = fileContentProcessor;
     this.functionTokenizers = FunctionTokenizers;
 }
Exemplo n.º 4
0
 public TemplateTokeniser(IRenameFileProcessor renameFileProcessor, IFileContentProcessor fileContentProcessor)
 {
     this.renameFileProcessor = renameFileProcessor;
     this.fileContentProcessor = fileContentProcessor;
 }
Exemplo n.º 5
0
 public TemplateTokeniser(IRenameFileProcessor renameFileProcessor, IFileContentProcessor fileContentProcessor, [ImportMany] IEnumerable <IFunctionTokenizer> FunctionTokenizers)
 {
     this.renameFileProcessor  = renameFileProcessor;
     this.fileContentProcessor = fileContentProcessor;
     this.functionTokenizers   = FunctionTokenizers;
 }
Exemplo n.º 6
0
 public TemplateTokeniser(IRenameFileProcessor renameFileProcessor, IFileContentProcessor fileContentProcessor)
 {
     this.renameFileProcessor  = renameFileProcessor;
     this.fileContentProcessor = fileContentProcessor;
 }