Search in sources :

Example 6 with ActionUpdateField

use of org.drools.workbench.models.datamodel.rule.ActionUpdateField in project drools by kiegroup.

the class RuleModelDRLPersistenceUnmarshallingTest method testRHSModifyBlockSingleFieldSingleLine.

@Test
public void testRHSModifyBlockSingleFieldSingleLine() throws Exception {
    // The value used in the "set" is intentionally yucky to catch extraction of the field's value errors!
    String drl = "rule \"modify1\"\n" + "  dialect \"mvel\"\n" + "  when\n" + "    $p : Person( )\n" + "  then\n" + "  modify( $p ) { setFirstName( \",)\" ) }\n" + "end";
    addModelField("Person", "firstName", "java.lang.String", DataType.TYPE_STRING);
    RuleModel m = RuleModelDRLPersistenceImpl.getInstance().unmarshal(drl, Collections.emptyList(), dmo);
    assertEquals(1, m.rhs.length);
    assertTrue(m.rhs[0] instanceof ActionUpdateField);
    ActionUpdateField field = (ActionUpdateField) m.rhs[0];
    assertEquals("$p", field.getVariable());
    assertNotNull(field.getFieldValues()[0]);
    assertEquals(1, field.getFieldValues().length);
    ActionFieldValue value = field.getFieldValues()[0];
    assertEquals("firstName", value.getField());
    assertEquals(",)", value.getValue());
    assertEquals(FieldNatureType.TYPE_LITERAL, value.getNature());
    assertEquals(DataType.TYPE_STRING, value.getType());
}
Also used : ActionUpdateField(org.drools.workbench.models.datamodel.rule.ActionUpdateField) ActionFieldValue(org.drools.workbench.models.datamodel.rule.ActionFieldValue) RuleModel(org.drools.workbench.models.datamodel.rule.RuleModel) Test(org.junit.Test)

Example 7 with ActionUpdateField

use of org.drools.workbench.models.datamodel.rule.ActionUpdateField in project drools by kiegroup.

the class RuleModelDRLPersistenceImpl method parseRhs.

private void parseRhs(final RuleModel m, final String rhs, final boolean isJavaDialect, final Map<String, String> boundParams, final ExpandedDRLInfo expandedDRLInfo, final PackageDataModelOracle dmo, final Collection<RuleModelIActionPersistenceExtension> extensions) throws RuleModelDRLPersistenceException {
    PortableWorkDefinition pwd = null;
    Map<String, List<String>> setStatements = new HashMap<String, List<String>>();
    Map<String, Integer> setStatementsPosition = new HashMap<String, Integer>();
    Map<String, String> factsType = new HashMap<String, String>();
    String modifiedVariable = null;
    String modifiers = null;
    int lineCounter = -1;
    String[] lines = rhs.split("\n");
    for (String line : lines) {
        lineCounter++;
        line = line.trim();
        List<RuleModelIActionPersistenceExtension> matchingExtensions = getMatchingExtensionsForLine(line, extensions);
        if (matchingExtensions.isEmpty()) {
        // Continue with hardcoded parsers
        } else if (matchingExtensions.size() > 1) {
            throw new RuleModelDRLPersistenceException("Ambiguous RuleModelIActionPersistenceExtension implementations (" + matchingExtensions + ") found for line " + line);
        } else {
            unmarshalUsingExtension(m, matchingExtensions.get(0), line);
            continue;
        }
        if (expandedDRLInfo.hasDsl) {
            String dslLine = expandedDRLInfo.dslStatementsInRhs.get(lineCounter);
            while (dslLine != null) {
                List<RuleModelIActionPersistenceExtension> matchingExtensionsDslLine = getMatchingExtensionsForLine(dslLine, extensions);
                if (matchingExtensionsDslLine.isEmpty()) {
                    m.addRhsItem(toDSLSentence(expandedDRLInfo.rhsDslPatterns, dslLine));
                } else if (matchingExtensionsDslLine.size() > 1) {
                    throw new RuleModelDRLPersistenceException("Ambiguous RuleModelIActionPersistenceExtension implementations (" + matchingExtensionsDslLine + ") found for line " + line);
                } else {
                    unmarshalUsingExtension(m, matchingExtensionsDslLine.get(0), dslLine);
                }
                dslLine = expandedDRLInfo.dslStatementsInRhs.get(++lineCounter);
            }
        }
        if (modifiedVariable != null) {
            int modifyBlockEnd = line.lastIndexOf('}');
            if (modifiers == null) {
                modifiers = modifyBlockEnd > 0 ? line.substring(line.indexOf('{') + 1, modifyBlockEnd).trim() : line.substring(line.indexOf('{') + 1).trim();
            } else if (modifyBlockEnd != 0) {
                modifiers += modifyBlockEnd > 0 ? line.substring(0, modifyBlockEnd).trim() : line;
            }
            if (modifyBlockEnd >= 0) {
                ActionUpdateField action = new ActionUpdateField();
                action.setVariable(modifiedVariable);
                m.addRhsItem(action);
                addModifiersToAction(modifiers, action, modifiedVariable, boundParams, dmo, m, isJavaDialect);
                modifiedVariable = null;
                modifiers = null;
            }
        } else if (line.startsWith("insertLogical")) {
            String fact = unwrapParenthesis(line);
            String type = getStatementType(fact, factsType);
            if (type != null) {
                boundParams.put(fact, type);
                ActionInsertLogicalFact action = new ActionInsertLogicalFact(type);
                m.addRhsItem(action);
                if (factsType.containsKey(fact)) {
                    action.setBoundName(fact);
                    addSettersToAction(setStatements, fact, action, boundParams, dmo, m, isJavaDialect);
                }
            }
        } else if (line.startsWith("insert")) {
            String fact = unwrapParenthesis(line);
            String type = getStatementType(fact, factsType);
            if (type != null) {
                boundParams.put(fact, type);
                ActionInsertFact action = new ActionInsertFact(type);
                m.addRhsItem(action);
                if (factsType.containsKey(fact)) {
                    action.setBoundName(fact);
                    addSettersToAction(setStatements, fact, action, boundParams, dmo, m, isJavaDialect);
                }
            }
        } else if (line.startsWith("update")) {
            String variable = unwrapParenthesis(line);
            ActionUpdateField action = new ActionUpdateField();
            action.setVariable(variable);
            m.addRhsItem(action);
            addSettersToAction(setStatements, variable, action, boundParams, dmo, m, isJavaDialect);
        } else if (line.startsWith("modify")) {
            int modifyBlockEnd = line.lastIndexOf('}');
            if (modifyBlockEnd > 0) {
                String variable = line.substring(line.indexOf('(') + 1, line.indexOf(')')).trim();
                ActionUpdateField action = new ActionUpdateField();
                action.setVariable(variable);
                m.addRhsItem(action);
                addModifiersToAction(line.substring(line.indexOf('{') + 1, modifyBlockEnd).trim(), action, variable, boundParams, dmo, m, isJavaDialect);
            } else {
                modifiedVariable = line.substring(line.indexOf('(') + 1, line.indexOf(')')).trim();
                int modifyBlockStart = line.indexOf('{');
                if (modifyBlockStart > 0) {
                    modifiers = line.substring(modifyBlockStart + 1).trim();
                }
            }
        } else if (line.startsWith("retract") || line.startsWith("delete")) {
            String variable = unwrapParenthesis(line);
            m.addRhsItem(new ActionRetractFact(variable));
        } else if (line.startsWith("org.drools.core.process.instance.impl.WorkItemImpl wiWorkItem")) {
            ActionExecuteWorkItem awi = new ActionExecuteWorkItem();
            pwd = new PortableWorkDefinition();
            pwd.setName("WorkItem");
            awi.setWorkDefinition(pwd);
            m.addRhsItem(awi);
        } else if (line.startsWith("wiWorkItem.getParameters().put")) {
            String statement = line.substring("wiWorkItem.getParameters().put".length());
            statement = unwrapParenthesis(statement);
            int commaPos = statement.indexOf(',');
            String name = statement.substring(0, commaPos).trim();
            String value = statement.substring(commaPos + 1).trim();
            pwd.addParameter(buildPortableParameterDefinition(name, value, boundParams));
        } else if (line.startsWith("wim.internalExecuteWorkItem") || line.startsWith("wiWorkItem.setName")) {
        // ignore
        } else {
            int dotPos = line.indexOf('.');
            int argStart = line.indexOf('(');
            if (dotPos > 0 && argStart > dotPos) {
                String variable = line.substring(0, dotPos).trim();
                if (boundParams.containsKey(variable) || factsType.containsKey(variable) || expandedDRLInfo.hasGlobal(variable)) {
                    if (isJavaIdentifier(variable)) {
                        String methodName = line.substring(dotPos + 1, argStart).trim();
                        if (isJavaIdentifier(methodName)) {
                            if (getSettedField(m, methodName, boundParams.get(variable), dmo) != null) {
                                List<String> setters = setStatements.get(variable);
                                if (setters == null) {
                                    setters = new ArrayList<String>();
                                    setStatements.put(variable, setters);
                                }
                                if (!setStatementsPosition.containsKey(variable)) {
                                    setStatementsPosition.put(variable, lineCounter);
                                }
                                setters.add(line);
                            } else if (methodName.equals("add") && expandedDRLInfo.hasGlobal(variable)) {
                                String factName = line.substring(argStart + 1, line.lastIndexOf(')')).trim();
                                ActionGlobalCollectionAdd actionGlobalCollectionAdd = new ActionGlobalCollectionAdd();
                                actionGlobalCollectionAdd.setGlobalName(variable);
                                actionGlobalCollectionAdd.setFactName(factName);
                                m.addRhsItem(actionGlobalCollectionAdd);
                            } else {
                                m.addRhsItem(getActionCallMethod(m, isJavaDialect, boundParams, dmo, line, variable, methodName));
                            }
                            continue;
                        }
                    }
                }
            }
            int eqPos = line.indexOf('=');
            boolean addFreeFormLine = line.trim().length() > 0;
            if (eqPos > 0) {
                String field = line.substring(0, eqPos).trim();
                if ("java.text.SimpleDateFormat sdf".equals(field) || "org.drools.core.process.instance.WorkItemManager wim".equals(field)) {
                    addFreeFormLine = false;
                }
                String[] split = field.split(" ");
                if (split.length == 2) {
                    factsType.put(split[1], split[0]);
                    addFreeFormLine &= !isInsertedFact(lines, lineCounter, split[1]);
                }
            }
            if (addFreeFormLine) {
                FreeFormLine ffl = new FreeFormLine();
                ffl.setText(line);
                m.addRhsItem(ffl);
            }
        }
    }
    // variable they are modifying was recorded as Free Format DRL and hence the "sets" need to be Free Format DRL too.
    for (Map.Entry<String, List<String>> entry : setStatements.entrySet()) {
        if (boundParams.containsKey(entry.getKey())) {
            ActionSetField action = new ActionSetField(entry.getKey());
            addSettersToAction(entry.getValue(), action, entry.getKey(), boundParams, dmo, m, isJavaDialect);
            m.addRhsItem(action, setStatementsPosition.get(entry.getKey()));
        } else {
            FreeFormLine action = new FreeFormLine();
            StringBuilder sb = new StringBuilder();
            for (String setter : entry.getValue()) {
                sb.append(setter).append("\n");
            }
            action.setText(sb.toString());
            m.addRhsItem(action, setStatementsPosition.get(entry.getKey()));
        }
    }
    if (expandedDRLInfo.hasDsl) {
        String dslLine = expandedDRLInfo.dslStatementsInRhs.get(++lineCounter);
        while (dslLine != null) {
            m.addRhsItem(toDSLSentence(expandedDRLInfo.rhsDslPatterns, dslLine));
            dslLine = expandedDRLInfo.dslStatementsInRhs.get(++lineCounter);
        }
    }
}
Also used : HashMap(java.util.HashMap) ActionRetractFact(org.drools.workbench.models.datamodel.rule.ActionRetractFact) ActionUpdateField(org.drools.workbench.models.datamodel.rule.ActionUpdateField) PortableWorkDefinition(org.drools.workbench.models.datamodel.workitems.PortableWorkDefinition) ArrayList(java.util.ArrayList) StringUtils.splitArgumentsList(org.drools.core.util.StringUtils.splitArgumentsList) List(java.util.List) ActionFieldList(org.drools.workbench.models.datamodel.rule.ActionFieldList) ActionExecuteWorkItem(org.drools.workbench.models.datamodel.rule.ActionExecuteWorkItem) RuleModelDRLPersistenceException(org.drools.workbench.models.commons.backend.rule.exception.RuleModelDRLPersistenceException) FieldConstraint(org.drools.workbench.models.datamodel.rule.FieldConstraint) ConnectiveConstraint(org.drools.workbench.models.datamodel.rule.ConnectiveConstraint) CompositeFieldConstraint(org.drools.workbench.models.datamodel.rule.CompositeFieldConstraint) SingleFieldConstraint(org.drools.workbench.models.datamodel.rule.SingleFieldConstraint) BaseSingleFieldConstraint(org.drools.workbench.models.datamodel.rule.BaseSingleFieldConstraint) FreeFormLine(org.drools.workbench.models.datamodel.rule.FreeFormLine) ActionSetField(org.drools.workbench.models.datamodel.rule.ActionSetField) ActionInsertFact(org.drools.workbench.models.datamodel.rule.ActionInsertFact) ActionGlobalCollectionAdd(org.drools.workbench.models.datamodel.rule.ActionGlobalCollectionAdd) Map(java.util.Map) HashMap(java.util.HashMap) ActionInsertLogicalFact(org.drools.workbench.models.datamodel.rule.ActionInsertLogicalFact)

Example 8 with ActionUpdateField

use of org.drools.workbench.models.datamodel.rule.ActionUpdateField in project drools by kiegroup.

the class RuleModelDRLPersistenceImpl method marshalRHS.

protected void marshalRHS(final StringBuilder buf, final RuleModel model, final boolean isDSLEnhanced, final RHSGeneratorContextFactory generatorContextFactory) {
    String indentation = "\t\t";
    if (model.rhs != null) {
        // Add boiler-plate for actions operating on Dates
        Map<String, List<ActionFieldValue>> classes = getRHSClassDependencies(model);
        if (classes.containsKey(DataType.TYPE_DATE)) {
            buf.append(indentation);
            if (isDSLEnhanced) {
                buf.append(">");
            }
            buf.append("java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat(\"" + DateUtils.getDateFormatMask() + "\");\n");
        }
        // Add boiler-plate for actions operating on WorkItems
        if (!getRHSWorkItemDependencies(model).isEmpty()) {
            buf.append(indentation);
            buf.append("org.drools.core.process.instance.WorkItemManager wim = (org.drools.core.process.instance.WorkItemManager) drools.getWorkingMemory().getWorkItemManager();\n");
        }
        // Marshall the model itself
        RHSActionVisitor actionVisitor = getRHSActionVisitor(isDSLEnhanced, buf, indentation, generatorContextFactory);
        // Reconcile ActionSetField and ActionUpdateField calls
        final List<IAction> actions = new ArrayList<IAction>();
        for (IAction action : model.rhs) {
            if (action instanceof ActionCallMethod) {
                actions.add(action);
            } else if (action instanceof ActionSetField) {
                final ActionSetField asf = (ActionSetField) action;
                final ActionSetFieldWrapper afw = findExistingAction(asf, actions);
                if (afw == null) {
                    actions.add(new ActionSetFieldWrapper(asf, (asf instanceof ActionUpdateField)));
                } else {
                    final List<ActionFieldValue> existingActionFieldValue = new ArrayList<ActionFieldValue>(Arrays.asList(afw.getAction().getFieldValues()));
                    for (ActionFieldValue afv : asf.getFieldValues()) {
                        existingActionFieldValue.add(afv);
                    }
                    final ActionFieldValue[] temp = new ActionFieldValue[existingActionFieldValue.size()];
                    afw.getAction().setFieldValues(existingActionFieldValue.toArray(temp));
                }
            } else {
                actions.add(action);
            }
        }
        model.rhs = new IAction[actions.size()];
        for (int i = 0; i < actions.size(); i++) {
            final IAction action = actions.get(i);
            if (action instanceof ActionSetFieldWrapper) {
                model.rhs[i] = ((ActionSetFieldWrapper) action).getAction();
            } else {
                model.rhs[i] = action;
            }
        }
        for (IAction action : model.rhs) {
            if (action instanceof PluggableIAction) {
                PluggableIAction processedIAction = (PluggableIAction) actionVisitor.preProcessIActionForExtensions(action);
                buf.append(indentation).append(processedIAction.getStringRepresentation()).append(";\n");
            } else {
                actionVisitor.visit(action);
            }
        }
    }
}
Also used : PluggableIAction(org.drools.workbench.models.datamodel.rule.PluggableIAction) IAction(org.drools.workbench.models.datamodel.rule.IAction) PluggableIAction(org.drools.workbench.models.datamodel.rule.PluggableIAction) ArrayList(java.util.ArrayList) ActionCallMethod(org.drools.workbench.models.datamodel.rule.ActionCallMethod) FieldConstraint(org.drools.workbench.models.datamodel.rule.FieldConstraint) ConnectiveConstraint(org.drools.workbench.models.datamodel.rule.ConnectiveConstraint) CompositeFieldConstraint(org.drools.workbench.models.datamodel.rule.CompositeFieldConstraint) SingleFieldConstraint(org.drools.workbench.models.datamodel.rule.SingleFieldConstraint) BaseSingleFieldConstraint(org.drools.workbench.models.datamodel.rule.BaseSingleFieldConstraint) ActionSetField(org.drools.workbench.models.datamodel.rule.ActionSetField) ActionUpdateField(org.drools.workbench.models.datamodel.rule.ActionUpdateField) ActionFieldValue(org.drools.workbench.models.datamodel.rule.ActionFieldValue) ArrayList(java.util.ArrayList) StringUtils.splitArgumentsList(org.drools.core.util.StringUtils.splitArgumentsList) List(java.util.List) ActionFieldList(org.drools.workbench.models.datamodel.rule.ActionFieldList)

Example 9 with ActionUpdateField

use of org.drools.workbench.models.datamodel.rule.ActionUpdateField in project drools by kiegroup.

the class RuleModelDRLPersistenceTest method testSumAsGivenValue.

@Test
public void testSumAsGivenValue() {
    // BZ-1013682
    String expected = "" + "rule \"my rule\" \n" + "  dialect \"mvel\"\n" + "  when\n" + "    m:Message()\n" + "  then\n" + "    modify( m ) {\n" + "      setText( \"Hello \" + \"world\" )\n" + "    }\n" + "end\n";
    final RuleModel m = new RuleModel();
    FactPattern factPattern = new FactPattern();
    factPattern.setFactType("Message");
    factPattern.setBoundName("m");
    m.lhs = new IPattern[] { factPattern };
    ActionUpdateField actionUpdateField = new ActionUpdateField();
    actionUpdateField.setVariable("m");
    ActionFieldValue actionFieldValue = new ActionFieldValue();
    actionFieldValue.setField("text");
    actionFieldValue.setType("String");
    actionFieldValue.setNature(FieldNatureType.TYPE_FORMULA);
    actionFieldValue.setValue("\"Hello \" + \"world\"");
    actionUpdateField.setFieldValues(new ActionFieldValue[] { actionFieldValue });
    m.rhs = new IAction[] { actionUpdateField };
    m.name = "my rule";
    checkMarshalling(expected, m);
}
Also used : ActionUpdateField(org.drools.workbench.models.datamodel.rule.ActionUpdateField) ActionFieldValue(org.drools.workbench.models.datamodel.rule.ActionFieldValue) FromEntryPointFactPattern(org.drools.workbench.models.datamodel.rule.FromEntryPointFactPattern) CompositeFactPattern(org.drools.workbench.models.datamodel.rule.CompositeFactPattern) FromCollectCompositeFactPattern(org.drools.workbench.models.datamodel.rule.FromCollectCompositeFactPattern) FactPattern(org.drools.workbench.models.datamodel.rule.FactPattern) FromAccumulateCompositeFactPattern(org.drools.workbench.models.datamodel.rule.FromAccumulateCompositeFactPattern) FromCompositeFactPattern(org.drools.workbench.models.datamodel.rule.FromCompositeFactPattern) RuleModel(org.drools.workbench.models.datamodel.rule.RuleModel) Test(org.junit.Test)

Example 10 with ActionUpdateField

use of org.drools.workbench.models.datamodel.rule.ActionUpdateField in project drools by kiegroup.

the class RuleModelDRLPersistenceTest method testRHSDateModifyAction.

@Test
public void testRHSDateModifyAction() {
    String oldValue = System.getProperty("drools.dateformat");
    try {
        System.setProperty("drools.dateformat", "dd-MMM-yyyy");
        RuleModel m = new RuleModel();
        m.name = "RHS Date";
        FactPattern p = new FactPattern("Person");
        p.setBoundName("$p");
        SingleFieldConstraint con = new SingleFieldConstraint();
        con.setFieldType(DataType.TYPE_DATE);
        con.setFieldName("dateOfBirth");
        con.setOperator("==");
        con.setValue("31-Jan-2000");
        con.setConstraintValueType(SingleFieldConstraint.TYPE_LITERAL);
        p.addConstraint(con);
        m.addLhsItem(p);
        ActionUpdateField am = new ActionUpdateField("$p");
        am.addFieldValue(new ActionFieldValue("dob", "31-Jan-2000", DataType.TYPE_DATE));
        m.addRhsItem(am);
        String result = RuleModelDRLPersistenceImpl.getInstance().marshal(m);
        assertTrue(result.indexOf("java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat(\"dd-MMM-yyyy\");") != -1);
        assertTrue(result.indexOf("setDob( sdf.parse(\"31-Jan-2000\"") != -1);
        assertTrue(result.indexOf("modify( $p ) {") != -1);
        checkMarshalling(null, m);
    } finally {
        if (oldValue == null) {
            System.clearProperty("drools.dateformat");
        } else {
            System.setProperty("drools.dateformat", oldValue);
        }
    }
}
Also used : SingleFieldConstraint(org.drools.workbench.models.datamodel.rule.SingleFieldConstraint) BaseSingleFieldConstraint(org.drools.workbench.models.datamodel.rule.BaseSingleFieldConstraint) ActionUpdateField(org.drools.workbench.models.datamodel.rule.ActionUpdateField) ActionFieldValue(org.drools.workbench.models.datamodel.rule.ActionFieldValue) FromEntryPointFactPattern(org.drools.workbench.models.datamodel.rule.FromEntryPointFactPattern) CompositeFactPattern(org.drools.workbench.models.datamodel.rule.CompositeFactPattern) FromCollectCompositeFactPattern(org.drools.workbench.models.datamodel.rule.FromCollectCompositeFactPattern) FactPattern(org.drools.workbench.models.datamodel.rule.FactPattern) FromAccumulateCompositeFactPattern(org.drools.workbench.models.datamodel.rule.FromAccumulateCompositeFactPattern) FromCompositeFactPattern(org.drools.workbench.models.datamodel.rule.FromCompositeFactPattern) RuleModel(org.drools.workbench.models.datamodel.rule.RuleModel) Test(org.junit.Test)

Aggregations

ActionUpdateField (org.drools.workbench.models.datamodel.rule.ActionUpdateField)58 ActionFieldValue (org.drools.workbench.models.datamodel.rule.ActionFieldValue)53 Test (org.junit.Test)47 CompositeFactPattern (org.drools.workbench.models.datamodel.rule.CompositeFactPattern)37 FactPattern (org.drools.workbench.models.datamodel.rule.FactPattern)37 FromCollectCompositeFactPattern (org.drools.workbench.models.datamodel.rule.FromCollectCompositeFactPattern)36 RuleModel (org.drools.workbench.models.datamodel.rule.RuleModel)27 FromAccumulateCompositeFactPattern (org.drools.workbench.models.datamodel.rule.FromAccumulateCompositeFactPattern)22 FromCompositeFactPattern (org.drools.workbench.models.datamodel.rule.FromCompositeFactPattern)22 IPattern (org.drools.workbench.models.datamodel.rule.IPattern)16 TemplateModel (org.drools.workbench.models.guided.template.shared.TemplateModel)16 BaseSingleFieldConstraint (org.drools.workbench.models.datamodel.rule.BaseSingleFieldConstraint)11 SingleFieldConstraint (org.drools.workbench.models.datamodel.rule.SingleFieldConstraint)11 ActionSetField (org.drools.workbench.models.datamodel.rule.ActionSetField)10 IAction (org.drools.workbench.models.datamodel.rule.IAction)8 BRLActionColumn (org.drools.workbench.models.guided.dtable.shared.model.BRLActionColumn)8 BRLActionVariableColumn (org.drools.workbench.models.guided.dtable.shared.model.BRLActionVariableColumn)8 GuidedDecisionTable52 (org.drools.workbench.models.guided.dtable.shared.model.GuidedDecisionTable52)8 Pattern52 (org.drools.workbench.models.guided.dtable.shared.model.Pattern52)7 ActionInsertFact (org.drools.workbench.models.datamodel.rule.ActionInsertFact)6