Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Eclipse Plugin Development CN"

Line 3: Line 3:
 
== 基础部分 ==
 
== 基础部分 ==
 
=== 平台对象 ===
 
=== 平台对象 ===
[[PlatformUI CN]] - SWT /JFace /Workbench <br />
+
[[PlatformUI CN |Platform UI]] - SWT /JFace /Workbench <br />
 
[[Image:workbench_decomposed.png]] <br />
 
[[Image:workbench_decomposed.png]] <br />
  
Line 69: Line 69:
 
== 高级部分 ==
 
== 高级部分 ==
 
=== WTP ===
 
=== WTP ===
[[Use Webtools WTP]] CN <br />
+
[[Use Webtools WTP CN |Use Webtools WTP]] <br />
[[How To Extends WTP]] CN <br />
+
[[How To Extends WTP CN |How To Extends WTP]] <br />
  
 
=== GMF ===
 
=== GMF ===
[[GMF Introduction]] CN <br />
+
[[GMF Introduction CN |GMF Introduction]] <br />
[[Development Based GMF]] CN <br />
+
[[Development Based GMF CN |Development Based GMF]] <br />
  
 
== 相关资源 ==
 
== 相关资源 ==
Line 82: Line 82:
 
* [http://www.eclipse.org/org/councils/roadmap.php Eclipse Roadmap]
 
* [http://www.eclipse.org/org/councils/roadmap.php Eclipse Roadmap]
 
* [http://dev.eclipse.org/conventions.html Eclipse 开发规范]
 
* [http://dev.eclipse.org/conventions.html Eclipse 开发规范]
* [http://www.eclipse.org/articles/Article-UI-Guidelines/index_cn.html Eclipse UI Guidelines] CN
+
* [http://www.eclipse.org/articles/Article-UI-Guidelines/index_cn.html Eclipse UI Guidelines]
* [http://www-128.ibm.com/developerworks/cn/views/opensource/articles.jsp?view_by=search&search_by=Eclipse IBM’s Eclipse 相关文献] CN
+
* [http://www-128.ibm.com/developerworks/cn/views/opensource/articles.jsp?view_by=search&search_by=Eclipse IBM’s Eclipse 相关文献]

Revision as of 23:34, 27 September 2006

Eclipse 插件开发将从以下几个方面论述,基础部分是对Eclipse SDK 的扩展,实例部分举例说明如何进行插件开发,高级部分是对WTP 的扩展及基于GMF 框架的开发。<p /> Other language version of this page:EN

基础部分

平台对象

Platform UI - SWT /JFace /Workbench
Workbench decomposed.png

产品结构

产品 Product、 Update Site 、 RCP Application
功能 Feature、Feature Patch
插件 Plugin、Fragment

+ ${eclipse.install.home}
|
++++ configuration/**, config.ini
|
++++ features/*.*
|
++++ plugins/yours, *.*
|
++++ links/**, *.link
|
++++ workspaces/.metadata, *.*
|
++++ .eclipseproduct
|
++++ eclipse.exe
|
++++ eclipse.ini

插件结构

+ ${yourdomain.project.component}
|
++++ src/*.java, *.properties
|
++++ lib/*.jar
|
++++ templ/*.*
|
++++ icons/*.gif, *.jpg
|
++++ .project, .classpath
|
++++ META-INF/MANIFEST.MF
|
++++ plugin.xml, build.properties

实例部分

Editors

编辑器:org.eclipse.ui.editors

Views

视图:org.eclipse.ui.views

Dialogs

首选项页:org.eclipse.ui.preferencePages
属性页:org.eclipse.ui.propertyPages
向导:org.eclipse.ui.newWizards
导入向导:org.eclipse.ui.importWizards
导出向导:org.eclipse.ui.exportWizards

Actions

操作集:org.eclipse.ui.actionSets
弹出菜单:org.eclipse.ui.popupMenus

Others

帮助文档:org.eclipse.help.toc

高级部分

WTP

Use Webtools WTP
How To Extends WTP

GMF

GMF Introduction
Development Based GMF

相关资源

Back to the top