use of org.kie.workbench.common.dmn.client.commands.expressions.types.function.ClearExpressionTypeCommand in project kie-wb-common by kiegroup.
the class FunctionGrid method clearExpressionType.
void clearExpressionType() {
expression.ifPresent(function -> {
final GridCellTuple gc = new GridCellTuple(0, 0, this);
sessionCommandManager.execute((AbstractCanvasHandler) sessionManager.getCurrentSession().getCanvasHandler(), new ClearExpressionTypeCommand(gc, function, uiModelMapper, () -> synchroniseViewWhenExpressionEditorChanged(this)));
});
}
Aggregations