`
openstudy
  • 浏览: 232573 次
  • 性别: 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
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics