public class AdHocSubProcessHandler extends CompositeContextNodeHandler {
protected Node createNode(Attributes attrs) {
DynamicNode result = new DynamicNode();
VariableScope variableScope = new VariableScope();
result.addContext(variableScope);
result.setDefaultContext(variableScope);
return result;
}
@SuppressWarnings("unchecked")