use of org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.SetGridCellValueCommand in project drools-wb by kiegroup.
the class ScenarioSimulationEventHandler method onEvent.
@Override
public void onEvent(SetGridCellValueEvent event) {
context.getStatus().setRowIndex(event.getRowIndex());
context.getStatus().setColumnIndex(event.getColumnIndex());
context.getStatus().setGridCellValue(event.getCellValue());
commonExecution(new SetGridCellValueCommand(event.getGridWidget()), false);
}
Aggregations