sorry. here's the method declaration in a more readable format:

public void signalProcessInstance(ProcessInstance processInstance) {
  | 
  |     ProcessInstance subProcessInstance =
  |                     ProcessInstance.getRootToken().getSubProcessInstance();
  | 
  |     if(subProcessInstance == null) {
  |         processInstance.signal();
  |     }
  | 
  |     else {
  |         signalProcessInstance(subProcessInstance);
  |     }
  | }

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

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

Reply via email to