use of org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.InsertColumnCommand in project drools-wb by kiegroup.
the class ScenarioSimulationEventHandler method onEvent.
@Override
public void onEvent(InsertColumnEvent event) {
context.getStatus().setColumnId(String.valueOf(new Date().getTime()));
context.getStatus().setColumnIndex(event.getColumnIndex());
context.getStatus().setRight(event.isRight());
context.getStatus().setAsProperty(event.isAsProperty());
commonExecution(new InsertColumnCommand(event.getGridWidget()), true);
}
Aggregations