tjaction.java

来自「Eclipse RCP下编写的工作管理软件代码」· Java 代码 · 共 43 行

JAVA
43
字号
/*
 * Created on 2003-4-10
 *
 * To change the template for this generated file go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
package net.sf.pim.action;

import net.sf.pim.TjUtil;
import net.sf.pim.view.UiTj;

import org.eclipse.swt.custom.BusyIndicator;
import org.eclipse.swt.widgets.Display;

/**
 * @author lzhang 
 */
public class TjAction extends UiAction {
	public TjAction() {
		super();
		name = "统计...";
		gif = "tj.gif";
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.jface.action.IAction#run()
	 */
	public void run() {
		super.run();
		BusyIndicator.showWhile(Display.getCurrent(), new Runnable() {
			public void run() {
				parent.checkSave();
				int[][] tj = TjUtil.fltj(parent.getData().getWorks());
				UiTj ui = new UiTj(parent.getTv().getControl().getShell());
				ui.setTjdata(tj);
				ui.open();
			}
		});
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?