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

📄 applicationworkbenchadvisor.java

📁 一个简单的CellEditor的例子 希望给学习java的朋友一点帮助
💻 JAVA
字号:
package com.intotherain.examples.SimpleCellEditor;import org.eclipse.ui.application.IWorkbenchWindowConfigurer;import org.eclipse.ui.application.WorkbenchAdvisor;import org.eclipse.ui.application.WorkbenchWindowAdvisor;public class ApplicationWorkbenchAdvisor extends WorkbenchAdvisor {	private static final String PERSPECTIVE_ID = "com.intotherain.examples.SimpleCellEditor.perspective";	public WorkbenchWindowAdvisor createWorkbenchWindowAdvisor(			IWorkbenchWindowConfigurer configurer) {		return new ApplicationWorkbenchWindowAdvisor(configurer);	}	public String getInitialWindowPerspectiveId() {		return PERSPECTIVE_ID;	}}

⌨️ 快捷键说明

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