use of com.synopsys.integration.detect.tool.detector.DetectorEventPublisher in project synopsys-detect by blackducksoftware.
the class SingletonFactory method createEventSingletons.
public EventSingletons createEventSingletons() {
StatusEventPublisher statusEventPublisher = new StatusEventPublisher(eventSystem);
ExitCodePublisher exitCodePublisher = new ExitCodePublisher(eventSystem);
DetectorEventPublisher detectorEventPublisher = new DetectorEventPublisher(eventSystem);
CodeLocationEventPublisher codeLocationEventPublisher = new CodeLocationEventPublisher(eventSystem);
ProjectEventPublisher projectEventPublisher = new ProjectEventPublisher(eventSystem);
return new EventSingletons(statusEventPublisher, exitCodePublisher, detectorEventPublisher, codeLocationEventPublisher, projectEventPublisher);
}
Aggregations