launchXBayaInterpreterItem.addActionListener(new AbstractAction() {
private WorkflowInterpreterLaunchWindow window;
public void actionPerformed(ActionEvent e) {
if (this.window == null) {
this.window = new WorkflowInterpreterLaunchWindow(engine);
}
try {
this.window.show();
} catch (Exception e1) {
engine.getGUI().getErrorWindow().error(e1);