public void resolve() {
NodeImpl destination = (NodeImpl) processDefinition.findNode(destinationName);
if (destination==null) {
throw new PvmException("couldn't find destination node "+destinationName+" for "+transition);
}
destination.addIncomingTransition(transition);
transition.setDestination(destination);
}
}
/** extract the process definition from the factory. This should be