this.hs.executeAllScriptsForStep(this.step, automatic);
} else if (this.step.isTypExport()) {
this.hs.executeDmsExport(this.step, automatic);
} else if (this.step.getStepPlugin() != null && this.step.getStepPlugin().length() > 0) {
IStepPlugin isp = (IStepPlugin) PluginLoader.getPluginByTitle(PluginType.Step, step.getStepPlugin());
isp.initialize(step, "");
if (isp.execute()) {
hs.CloseStepObjectAutomatic(step);
}
}
}