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