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

📄 openviewaction.java

📁 一个基于eclipse插件开发的聊天程序
💻 JAVA
字号:
package talkClient;import org.eclipse.jface.action.Action;import org.eclipse.jface.dialogs.MessageDialog;import org.eclipse.ui.IWorkbenchPage;import org.eclipse.ui.IWorkbenchWindow;import org.eclipse.ui.PartInitException;public class OpenViewAction extends Action {		private final IWorkbenchWindow window;	private int instanceNum = 0;	private final String viewId;		public OpenViewAction(IWorkbenchWindow window, String label, String viewId) {		this.window = window;		this.viewId = viewId;        setText(label);        // The id is used to refer to the action in a menu or toolbar		setId(ICommandIds.CMD_OPEN);        // Associate the action with a pre-defined command, to allow key bindings.		setActionDefinitionId(ICommandIds.CMD_OPEN);		setImageDescriptor(talkClient.TalkClientPlugin.getImageDescriptor("/icons/sample2.gif"));	}		public void run() {		if(window != null) {				try {				window.getActivePage().showView(viewId, null, IWorkbenchPage.VIEW_ACTIVATE);			} catch (PartInitException e) {				MessageDialog.openError(window.getShell(), "Error", "Error opening view:" + e.getMessage());			}		}	}}

⌨️ 快捷键说明

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