`
openstudy
  • 浏览: 236170 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Eclipse RCP参考资料

阅读更多
0.http://www.vogella.de/articles/GWT/article.html

1.Eclipse RCP Webstart
http://www.ibm.com/developerworks/cn/opensource/tutorials/os-eclipse-jws/index.html
http://cai555.iteye.com/blog/511009

2.Eclipse RCP Help
http://www.eclipse.org/articles/article.php?file=Article-AddingHelpToRCP/index.html
http://358184482-qq-com.iteye.com/blog/460987

3.RCP 生成Word
http://hi.baidu.com/joelli/blog/item/31e7dd182e7b01b14bedbc62.html

4.开发您的第一个 Eclipse RCP 应用程序
https://www6.software.ibm.com/developerworks/cn/education/opensource/os-ecl-rcpapp/index.html

5.rcp实用技巧
http://dcbjavaeye.iteye.com/blog/356556
6.Microsoft and Java Integration with Eclipse
http://www.vogella.de/articles/EclipseMicrosoftIntegration/article.html

7.RCP Text Editor
http://www.eclipse.org/eclipse/platform-text/development/rcp/examples/texteditor/rcp_texteditor_ex.html
http://www.eclipse.org/eclipse/platform-text/development/rcp/examples/index.html

8.splitpane - sash
http://www.cnblogs.com/louischx/archive/2008/10/25/1319501.html

9. Perspective 布局控制
http://www.roboticfan.com/blog/user_2005/104/20076181953.shtml

10. RCP example
http://www.blogjava.net/JetGeng/archive/2006/03/12/34892.html
http://sourceforge.net/projects/swt-datepicker/

11.some code
Program.launch("c:\\cygwin\\cygwin.bat");//Invoke an external batch file

IEditorReference[] editors = page.getEditorReferences();
if(editors!=null){
for (IEditorReference reference : editors) {
if (!(reference.getId().equals("MyEditorID")) {
IEditorPart editorPart = reference.getEditor(false);
if(editorPart.isDirty()){
page.closeEditor(editorPart, true);
}else{
page.closeEditor(editorPart, false);
}
}
}

12 Composer - SWT HTML Editor Widget
http://sourceforge.net/projects/swt-composer/

待读文章
http://www.vogella.de/articles/RichClientPlatform/article.html
http://www.vogella.de/articles/EclipseJFaceTable/article.html
http://www.eclipse.org/articles/Article-TreeViewer/TreeViewerArticle.htm
http://www.ibm.com/developerworks/cn/opensource/os-eclipse-globalrcp/index.html
http://www.vogella.de/articles/Eclipse/article.html
分享到:
评论

相关推荐

    Eclipse rcp深入浅出中英文版及配套代码

    Eclipse RCP,全称Eclipse Rich Client Platform,是一个基于Java的框架,用于构建桌面应用程序。这个框架由Eclipse基金会维护...这是一本非常实用的参考资料,对于希望在Java桌面应用领域工作的开发者来说,极具价值。

    eclipse RCP Plug-in开发自学教程.pdf

    所有的代码均可直接运行,适合Eclipse开发者参考。 在学习本教程时,读者需要具备基本的Java基础知识和Eclipse基础知识。如果您已经具备了这些基础知识,那么学习Eclipse RCP插件式开发将变得非常容易。 学习...

    Eclipse Rcp comon Navigator demo

    Eclipse RCP(Rich Client Platform)是一个开源框架,用于构建桌面应用程序。Common Navigator是Eclipse RCP...在扩展过程中,不断研究Eclipse的API文档,参考社区的示例和教程,将有助于你更好地理解和掌握这一技术。

    JAVA3D动画 Eclipse RCP

    在【参考SRC】这个压缩包中,可能包含了创建此类项目的源代码示例,你可以通过分析和学习这些代码来进一步理解和掌握在Eclipse RCP中实现JAVA3D动画的技术细节。通过不断实践和调整,你可以创建出更具复杂性和交互性...

    基于Eclipse RCP的复合应用

    IBM作为全球知名的科技公司,其在软件开发领域的专业性不容忽视,因此他们对于Eclipse RCP的解读和实践具有很高的参考价值。 Eclipse RCP的核心特性包括: 1. **模块化**:RCP支持插件(Plugin)架构,允许开发者将...

    eclipse rcp

    Eclipse RCP,全称Eclipse Rich Client Platform,是一个基于Java的框架,用于构建桌面应用程序。...在学习过程中,参考《全新的Eclipse RCP开发指南及实例》这样的资料,可以帮助你更好地理解和应用这些知识点。

    eclipse RCP 数独工程

    【描述】:“eclipseRCP的数独工程,非常不错的一个实例,大家快点下载吧” 描述中提到这是一个“非常不错”的实例,这意味着这个项目可能是高质量的,适合开发者学习和参考。它提供了Eclipse RCP的实际应用案例,...

    Eclipse RCP教程

    ### Eclipse RCP 教程知识点概述 #### 一、Eclipse RCP 概览 - **定义**:Eclipse RCP(Rich Client Platform)是一种基于Java的框架和技术集合,允许开发者构建灵活且可扩展的桌面应用程序。 - **目标**:通过提供...

    Eclipse RCP自学教程

    Eclipse Rich Client Platform (RCP) 是一个强大的开发框架,用于构建桌面应用程序。...在实践中,你可以参考“rcp自学教程.doc”文档,它应包含了详细的步骤指导和实例分析,助你快速上手Eclipse RCP开发。

    《Eclipse RCP 系统开发与实战》

    总的来说,《Eclipse RCP系统开发与实战》是一本对Eclipse RCP感兴趣的开发者不可或缺的参考书籍。尽管一些内容可能需要更新,但其基础理念和大部分技术仍然是RCP开发的重要基石。通过深入学习,开发者可以充分利用...

    Eclipse-4-RCP教程

    ### Eclipse-4-RCP教程详解 #### 一、Eclipse RCP 应用程序简介 Eclipse RCP(Rich Client Platform)是一种利用Eclipse平台技术构建独立应用的方式。本教程将交替使用“基于Eclipse的应用”、“Eclipse应用”、...

    Eclipse_RCP应用系统开发方法与实战.

    《Eclipse RCP应用系统开发方法与实战》是一本全面覆盖Eclipse RCP开发的书籍,它不仅提供了扎实的理论基础,还包含了丰富的实践指导,对于想要学习或提升Eclipse RCP开发能力的读者来说,是一份宝贵的参考资料。...

    Eclipse+RCP框架分析和应用研究.pdf

    《Eclipse RCP框架分析和应用研究》一文深入探讨了Eclipse RCP(Rich ...还分享了在实际项目中运用该框架的经验和教训,对于希望利用Eclipse RCP进行高效、高质量桌面应用开发的Java开发者来说,是一份宝贵的参考资料。

    eclipse.rcp应用系统开发方法与实战源代码

    这个压缩包文件包含的是与Eclipse RCP相关的应用系统开发方法和实战源代码,对于学习和理解Eclipse RCP的开发有着重要的参考价值。 首先,"下载说明.HTM"很可能是对如何下载、安装以及使用这些源代码的指南。在...

    eclipse插件及RCP开发资料.rar

    1. **官方文档**:Eclipse官方网站提供了详细的插件和RCP开发文档,包括教程、API参考和最佳实践。 2. **书籍**:如《Eclipse Rich Client Platform》、《Eclipse Plug-in Development by Example》等书籍,对...

    rcp收集资料上传

    【标题】"rcp收集资料上传"涉及到的是有关Eclipse RCP(Rich Client Platform)的知识,这是一种用于构建桌面应用程序的框架,由Eclipse基金会开发。RCP提供了丰富的用户界面组件和可扩展性,使得开发者可以构建功能...

    RCP自定义透视图切换按钮的右键菜单

    在Eclipse RCP(Rich Client Platform)开发中,创建用户友好的界面是至关重要的。一个常见的需求是定制透视图(Perspective)的交互方式,包括切换按钮和右键菜单。本教程将详细介绍如何通过`org.eclipse.ui....

    Eclipse RCP Plugin 开发自学入门指南(CEC首发)

    适合Eclipse 开发者参考。 声明 本教程素材来源于网络,经过本人的整理、添加以及部分的重写,将原有的 Eclipse3.3 版本的 一些内容完全迁移到 Eclipse3.6 版本上来。基于开源以及分享的精神,特地将教程分享到...

    Eclipse Rich Client Platform 2nd Edition[文字版][英文].pdf

    - **官方文档与API参考**:Eclipse官方网站提供了详细的文档和API参考,帮助开发者深入理解RCP框架。 - **社区支持**:活跃的社区论坛和邮件列表为开发者提供了交流平台和技术支持。 - **开源项目**:许多基于...

Global site tag (gtag.js) - Google Analytics