thanks,i have find the causation of the error!
public class Transition extends GraphElement {
| ......
| public Node getTo() {
| return to;
| }
| ......
| }
public class ProcessDefinition extends GraphElement implements NodeCollection {
| public Node getNode(String name) {
| if (nodes==null) return null;
| return (Node) getNodesMap().get(name);
| }
| }
the define is different between Transition.getTo() and ProcessDefinition.getNode().
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3964413#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...