Take a Look at GetOutcomes.java
| ExecutionImpl execution = (task != null ? task.getExecution() : null);
| ActivityImpl activity = (execution != null ? execution.getActivity() : null);
| List<Transition> outgoingTransitions = (activity != null ?
activity.getOutgoingTransitions() : null);
|
| if (outgoingTransitions != null) {
| for (Transition transition : outgoingTransitions) {
| //transition.getName() is transition name (name on arrow)
| //transition.getDestination().getName() is final end node where
| }
| }
|
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4261336#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...