⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 search2action.java

📁 mywork是rcp开发的很好的例子
💻 JAVA
字号:
/*
 * 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.component.config.ConfigHelper;
import net.sf.pim.model.psp.WorkList;
import net.sf.util.persistence.DataException;

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

/**
 * @author lzhang 
 */
public class Search2Action extends UiAction {
	public Search2Action() {
		super();
		name = "查找指定日期";
		gif = "search2.gif";
	}

	public void run() {
		super.run();
		BusyIndicator.showWhile(Display.getCurrent(), new Runnable() {
			public void run() {
				parent.checkSave();
				String[] s3 = ConfigHelper.getStringArrayProperty("work.search3");
				parent.setMulti(true);
				try {
					parent.setData(new WorkList(parent.getDataManager().readList("", s3)));
				} catch (DataException e) {
					e.printStackTrace();
				}
				parent.setMyStatus(s3[0] + "~" + s3[1]);
			}
		});
	}
}

⌨️ 快捷键说明

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