01: package com.opensymphony.workflow.designer.actions;
02:
03: import java.awt.event.ActionEvent;
04: import javax.swing.*;
05:
06: import com.opensymphony.workflow.designer.WorkflowDesigner;
07:
08: /**
09: * @author Hani Suleiman (hani@formicary.net)
10: * Date: May 21, 2003
11: * Time: 1:11:43 AM
12: */
13: public class Quit extends AbstractAction {
14: public Quit() {
15: }
16:
17: public void actionPerformed(ActionEvent e) {
18: WorkflowDesigner.INSTANCE.quit();
19: }
20: }
|