xml file:

<?xml version="1.0" encoding="UTF-8"?>
  | <process-definition xmlns="" name="yytest">
  |     <start-state name='start'>   
  |         <transition to='a' />   
  |     </start-state>   
  |     <state name='a'>   
  |         <transition to='multichoice' />   
  |     </state>
  |     <fork name='multichoice'>   
  |         <transition name='to b' to='b'>
  |             <condition>scenario == 1</condition>
  |         </transition>   
  |         <transition name='to c' to='c'>   
  |             <condition>scenario == 2</condition>
  |         </transition>   
  |     </fork>   
  |     <state name='b'>   
  |         <transition to='syncmerge' />   
  |     </state>   
  |     <state name='c'>   
  |         <transition to='syncmerge' />   
  |     </state>   
  |     <join name='syncmerge'>   
  |         <transition to='end' />   
  |     </join>
  |    <end-state name="end"></end-state>    
  | </process-definition>

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3990330#3990330

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3990330
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to