ExitAction.java
上传用户:flow_meter
上传日期:2022-03-21
资源大小:40k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

SQL

  1. package sql_lab;
  2. import org.eclipse.jface.action.Action;
  3. public class ExitAction extends Action {
  4. public ExitAction(){
  5. super();
  6. this.setText("退出(&E)");
  7. this.setToolTipText("退出");
  8. }
  9. public void run(){
  10. MainWindow.getApp().close();
  11. }
  12. }