Project

General

Profile

Actions

EclipseRCPResources » History » Revision 29

« Previous | Revision 29/59 (diff) | Next »
Pepe Ciardelli, 02/15/2008 04:23 PM


Eclipse RCP Resources

Platform Plug-in Developer Guide

http://help.eclipse.org/help33/index.jsp

Platform News Groups

http://www.eclipse.org/newsportal/thread.php?group=eclipse.platform

http://www.eclipse.org/newsportal/thread.php?group=eclipse.platform.swt

http://www.eclipse.org/newsportal/thread.php?group=eclipse.platform.rcp

Tutorials

Good introduction to the basic structure of an RCP project:

http://www.eclipse.org/articles/Article-RCP-1/tutorial1.html

http://www.eclipse.org/articles/Article-RCP-1/tutorial2.html

http://www.eclipse.org/articles/Article-RCP-1/tutorial3.html

SWT layout tutorial:

http://www.eclipse.org/articles/Article-Understanding-Layouts/Understanding-Layouts.htm

Tabbed properties tutorial:

http://www.eclipse.org/articles/Article-Tabbed-Properties/tabbed_properties_view.html

Text editor:

http://www.realsolve.co.uk/site/tech/jface-text.php

http://dev.eclipse.org/newslists/news.eclipse.platform.swt/msg19676.html

Content assist:

http://wiki.eclipse.org/FAQ_How_do_I_add_Content_Assist_to_my_language_editor%3F

StyledText:

http://www.eclipse.org/articles/StyledText%201/article1.html

Code Examples

http://www.java2s.com/Code/Java/SWT-JFace-Eclipse/CatalogSWT-JFace-Eclipse.htm

http://wiki.eclipse.org/index.php/JFaceSnippets

http://www.eclipse.org/swt/snippets

Eclipse Quirks

VERY STRANGE "OPEN EDITOR ACTION" BUG: when opening an editor w/ the command openEditor in the run() method of an org.eclipse.jface.action.Action subclass, the editor MUST have an icon defined in its plugin.xml Extension details. Otherwise, you'll get the following error: Unable to open editor, unknown editor ID: eu.etaxonomy.taxeditor.designproposal1.view.mpetestview.

Research

Data Binding

Several data binding frameworks exist for Java. IBM Developer Works gives a good overview.

We focus on JFace, cause there is ready Eclipse support available:

Model-View-Controller (general)

The following two articles describe an example of an MVC GUI written in Swing, but it nonetheless gets down to the nitty gritty of how MVC theory gets translated into code.

http://www.javadude.com/articles/vaddmvc2/mvc1.html

http://www.javadude.com/articles/vaddmvc2/mvc2.html

This is a good article, again for Swing, which runs EVERYTHING - i.e., in both directions - through the controller.

http://java.sun.com/developer/technicalArticles/javase/mvc/

I liked this one, his commenters didn't.

http://www.onjava.com/pub/a/onjava/2004/07/07/genericmvc.html

Only touches on MVC, but lots of good ideas for efficiently building a JFace tree.

http://www.eclipsezone.com/eclipse/forums/t53983.html?start=0

Updated by Pepe Ciardelli about 16 years ago · 29 revisions