1 package com.opensymphony.workflow.designer.actions; 2 3 import java.awt.event.ActionEvent ; 4 import javax.swing.*; 5 6 import com.opensymphony.workflow.designer.WorkflowDesigner; 7 8 13 public class Quit extends AbstractAction 14 { 15 public Quit() 16 { 17 } 18 19 public void actionPerformed(ActionEvent e) 20 { 21 WorkflowDesigner.INSTANCE.quit(); 22 } 23 } 24 | Popular Tags |