use of org.drools.scenariosimulation.api.model.ScenarioSimulationModel.Type in project drools-wb by kiegroup.
the class ScenarioSimulationEditorPresenter method setSettings.
public void setSettings(SettingsView.Presenter presenter) {
Type modelType = dataManagementStrategy instanceof AbstractDMODataManagementStrategy ? Type.RULE : Type.DMN;
presenter.setEventBus(eventBus);
presenter.setScenarioType(modelType, model.getSettings(), path.getFileName());
}
use of org.drools.scenariosimulation.api.model.ScenarioSimulationModel.Type in project drools-wb by kiegroup.
the class ScenarioSimulationEditorPresenter method setCheatSheet.
public void setCheatSheet(CheatSheetView.Presenter presenter) {
Type modelType = dataManagementStrategy instanceof AbstractDMODataManagementStrategy ? Type.RULE : Type.DMN;
presenter.initCheatSheet(modelType);
}
Aggregations