use of com.synopsys.integration.detect.interactive.InteractiveModeDecisionTree in project synopsys-detect by blackducksoftware.
the class DetectBootFactory method createInteractiveManager.
public InteractiveManager createInteractiveManager(List<PropertySource> propertySources) {
InteractiveWriter writer = InteractiveWriter.defaultWriter(System.console(), System.in, System.out);
InteractivePropertySourceBuilder propertySourceBuilder = new InteractivePropertySourceBuilder(writer);
InteractiveModeDecisionTree interactiveModeDecisionTree = new InteractiveModeDecisionTree(detectInfo, blackDuckConnectivityChecker, propertySources, gson);
return new InteractiveManager(propertySourceBuilder, writer, interactiveModeDecisionTree);
}
Aggregations