blob: 1982255bf716c00fc70779c8567d32421390e75c [file] [log] [blame]
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -04001rule "B to C"
2 agenda-group "B to C"
3 auto-focus true
4 when
5 State(name == "B", state == State.FINISHED )
6 c : State(name == "C", state == State.NOTRUN )
7 then
8 System.out.println(c.getName() + " finished" );
9 c.setState( State.FINISHED );
10 kcontext.getKnowledgeRuntime().getAgenda().getAgendaGroup( "B to D" ).setFocus();
11end