return getExecutor(context, evaluator, scxml, ed, trc);
}
public static SCXMLExecutor getExecutor(final URL url, final Context ctx,
final Evaluator evaluator) {
SCXML scxml = digest(url);
EventDispatcher ed = new SimpleDispatcher();
Tracer trc = new Tracer();
return getExecutor(ctx, evaluator, scxml, ed, trc);
}