use of com.synopsys.integration.detect.tool.detector.factory.DetectorFactory in project synopsys-detect by blackducksoftware.
the class DetectRun method createOperationFactory.
private OperationFactory createOperationFactory(BootSingletons bootSingletons, UtilitySingletons utilitySingletons, EventSingletons eventSingletons) throws DetectUserFriendlyException {
DetectorFactory detectorFactory = new DetectorFactory(bootSingletons, utilitySingletons);
DetectFontLoaderFactory detectFontLoaderFactory = new DetectFontLoaderFactory(bootSingletons, utilitySingletons);
return new OperationFactory(detectorFactory.detectDetectableFactory(), detectFontLoaderFactory, bootSingletons, utilitySingletons, eventSingletons, exitCodeManager);
}
Aggregations