" $p : Person( $n : name )\n" +
"then\n" +
" $p.setAge( 25 );\n" +
"end";
final GuidedDecisionTree model = new GuidedDecisionTree();
model.setTreeName( "test" );
final TypeNode type = new TypeNodeImpl( "Person" );
type.setBinding( "$p" );
final ConstraintNode c1 = new ConstraintNodeImpl( "Person",
"name" );
c1.setBinding( "$n" );
model.setRoot( type );
type.addChild( c1 );
final ActionUpdateNode action = new ActionUpdateNodeImpl( type );
action.setModify( false );
action.getFieldValues().add( new ActionFieldValueImpl( "age",