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 PackageProcessor(
     [Import("FilteredFileSystemArtefactProcessor")]IArtefactProcessor artefactProcessor,
     ICleanUpProcessor cleanUpProcessor,
     IProgressNotifier progressNotifier,
     ITemplateTokeniser templateTokeniser, 
     IBinaryFileFilter binaryFileFilter)
 {
     this.artefactProcessor = artefactProcessor;
     this.binaryFileFilter = binaryFileFilter;
     this.cleanUpProcessor = cleanUpProcessor;
     this.progressNotifier = progressNotifier;
     this.templateTokeniser = templateTokeniser;
 }
Exemplo n.º 4
0
 public PackageProcessor(
     [Import("FilteredFileSystemArtefactProcessor")] IArtefactProcessor artefactProcessor,
     ICleanUpProcessor cleanUpProcessor,
     IProgressNotifier progressNotifier,
     ITemplateTokeniser templateTokeniser,
     IBinaryFileFilter binaryFileFilter)
 {
     this.artefactProcessor = artefactProcessor;
     this.binaryFileFilter  = binaryFileFilter;
     this.cleanUpProcessor  = cleanUpProcessor;
     this.progressNotifier  = progressNotifier;
     this.templateTokeniser = templateTokeniser;
 }