use of org.drools.workbench.models.guided.dtree.shared.model.nodes.ActionUpdateNode in project drools by kiegroup.
the class GuidedDecisionTreeDRLPersistenceMarshallingTest method testSingleRule_ActionSetZeroFields.
@Test
public void testSingleRule_ActionSetZeroFields() throws Exception {
final String expected = "rule \"test_0\"" + "when\n" + " $p : Person( )\n" + "then\n" + "end";
final GuidedDecisionTree model = new GuidedDecisionTree();
model.setTreeName("test");
final TypeNode type = new TypeNodeImpl("Person");
type.setBinding("$p");
model.setRoot(type);
final ActionUpdateNode action = new ActionUpdateNodeImpl(type);
action.setModify(false);
type.addChild(action);
final String drl = GuidedDecisionTreeDRLPersistence.getInstance().marshal(model);
assertEqualsIgnoreWhitespace(expected, drl);
}
use of org.drools.workbench.models.guided.dtree.shared.model.nodes.ActionUpdateNode in project drools by kiegroup.
the class GuidedDecisionTreeDRLPersistenceMarshallingTest method testSingleRule_ActionSetActionRetract.
@Test
public void testSingleRule_ActionSetActionRetract() throws Exception {
final String expected = "rule \"test_0\"" + "when\n" + " $p : Person( )\n" + "then\n" + " $p.setAge( 25 );\n" + " retract( $p );\n" + "end";
final GuidedDecisionTree model = new GuidedDecisionTree();
model.setTreeName("test");
final TypeNode type = new TypeNodeImpl("Person");
type.setBinding("$p");
model.setRoot(type);
final ActionUpdateNode action1 = new ActionUpdateNodeImpl(type);
action1.setModify(false);
action1.getFieldValues().add(new ActionFieldValueImpl("age", new IntegerValue(25)));
type.addChild(action1);
final ActionRetractNode action2 = new ActionRetractNodeImpl(type);
action1.addChild(action2);
final String drl = GuidedDecisionTreeDRLPersistence.getInstance().marshal(model);
assertEqualsIgnoreWhitespace(expected, drl);
}
use of org.drools.workbench.models.guided.dtree.shared.model.nodes.ActionUpdateNode in project drools by kiegroup.
the class GuidedDecisionTreeDRLPersistenceMarshallingTest method testSingleRule_ActionModify.
@Test
public void testSingleRule_ActionModify() throws Exception {
final String expected = "rule \"test_0\"" + "when\n" + " $p : Person( )\n" + "then\n" + " modify( $p ) {\n" + " setAge( 25 )\n" + " }\n" + "end";
final GuidedDecisionTree model = new GuidedDecisionTree();
model.setTreeName("test");
final TypeNode type = new TypeNodeImpl("Person");
type.setBinding("$p");
model.setRoot(type);
final ActionUpdateNode action = new ActionUpdateNodeImpl(type);
action.setModify(true);
action.getFieldValues().add(new ActionFieldValueImpl("age", new IntegerValue(25)));
type.addChild(action);
final String drl = GuidedDecisionTreeDRLPersistence.getInstance().marshal(model);
assertEqualsIgnoreWhitespace(expected, drl);
}
use of org.drools.workbench.models.guided.dtree.shared.model.nodes.ActionUpdateNode in project drools-wb by kiegroup.
the class GuidedDecisionTreeEditorPresenter method editModelNode.
public void editModelNode(final Node node, final Command callback) {
if (node instanceof TypeNode) {
final EditTypePopup popup = new EditTypePopup((TypeNode) node, new com.google.gwt.user.client.Command() {
@Override
public void execute() {
callback.execute();
}
});
popup.show();
} else if (node instanceof ConstraintNode) {
final EditConstraintPopup popup = new EditConstraintPopup((ConstraintNode) node, oracle, new com.google.gwt.user.client.Command() {
@Override
public void execute() {
callback.execute();
}
});
popup.show();
} else if (node instanceof ActionInsertNode) {
final EditActionInsertPopup popup = new EditActionInsertPopup((ActionInsertNode) node, oracle, new com.google.gwt.user.client.Command() {
@Override
public void execute() {
callback.execute();
}
});
popup.show();
} else if (node instanceof ActionUpdateNode) {
final EditActionUpdatePopup popup = new EditActionUpdatePopup((ActionUpdateNode) node, oracle, new com.google.gwt.user.client.Command() {
@Override
public void execute() {
callback.execute();
}
});
popup.show();
} else if (node instanceof ActionRetractNode) {
final EditActionRetractPopup popup = new EditActionRetractPopup((ActionRetractNode) node, new com.google.gwt.user.client.Command() {
@Override
public void execute() {
callback.execute();
}
});
popup.show();
}
}
use of org.drools.workbench.models.guided.dtree.shared.model.nodes.ActionUpdateNode in project drools-wb by kiegroup.
the class GuidedDecisionTreePalette method setDataModelOracle.
public void setDataModelOracle(final AsyncPackageDataModelOracle oracle, final boolean isReadOnly) {
this.oracle = PortablePreconditions.checkNotNull("oracle", oracle);
clear();
// Add types and constraints
for (String className : oracle.getFactTypes()) {
add(makePanelGroup(className, isReadOnly));
}
// Add actions
final GuidedDecisionTreePaletteGroup paletteGroup = new GuidedDecisionTreePaletteGroup();
if (oracle.getFactTypes().length > 0) {
final String className = oracle.getFactTypes()[0];
final ActionInsertNode an1 = new ActionInsertNodeImpl(className);
paletteGroup.addStencil(actionInsertNodeFactory, stencilBuilder, new ActionInsertFactoryHelper(an1, isReadOnly), isReadOnly);
}
final ActionUpdateNode an2 = new ActionUpdateNodeImpl();
paletteGroup.addStencil(actionUpdateNodeFactory, stencilBuilder, new ActionUpdateFactoryHelper(an2, isReadOnly), isReadOnly);
final ActionRetractNode an3 = new ActionRetractNodeImpl();
paletteGroup.addStencil(actionRetractNodeFactory, stencilBuilder, new ActionRetractFactoryHelper(an3, isReadOnly), isReadOnly);
add(new PanelGroup() {
{
final PanelCollapse collapse = new PanelCollapse() {
{
add(new PanelBody() {
{
add(paletteGroup);
}
});
}
};
add(new PanelHeader() {
{
setDataToggle(Toggle.COLLAPSE);
setDataParent(getId());
setDataTargetWidget(collapse);
add(new Heading(HeadingSize.H4) {
{
setText(GuidedDecisionTreeConstants.INSTANCE.actionsPaletteGroup());
}
});
}
});
add(collapse);
}
});
}
Aggregations