use of org.drools.workbench.screens.guided.rule.client.widget.ExpressionBuilder in project drools-wb by kiegroup.
the class ConstraintValueEditor method expressionEditor.
private Widget expressionEditor() {
ExpressionBuilder builder = null;
builder = new ExpressionBuilder(this.modeller, this.eventBus, this.constraint.getExpressionValue(), this.readOnly);
builder.addOnModifiedCommand(new Command() {
public void execute() {
executeOnValueChangeCommand();
}
});
Widget ed = widgets(new HTML(" "), builder);
return ed;
}
Aggregations