Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

E4/RAP Integration

The RAP project provides the 'WebWorkbench' by copying the original platform code and change those things that don't work in RAP. Unfortunately this is the worst thinkable way of code-reuse. Adopting to code changes of the original code is error-prone and time-consuming.

As it is intented to integrate RAP into e4, we've been marking the code changes with 'RAP' markers so that we are now able to identify what we've done so far to get the code working within RAP. Looking at the bundles org.eclipse.rap.jface, org.eclipse.rap.jface.databinding, org.eclipse.rap.ui, org.eclipse.rap.ui.forms, org.eclipse.rap.ui.views, org.eclipse.rap.ui.workbench we have about 1900 markers...

What I've seen so far, none of those markers point to code that can simply be merged with the origninal code. To explain this a little bit more in detail I put up a list that categorizes the main types of problems (I've created wiki pages for each of the topics. This way it may be easier to discuss the individual issues in individual mail threads - as opposed to everybody responding to one mail with lots of issues):

1) RWT misses SWT-API

2) Singletons

3) NLS

4) Bundle initializations

5) Jobs

6) Cleanup on Session Shutdown

At least the items 2, 3 and 5 are consequences of the multi user support and therefore could be of common interest heading for e4. So maybe this is a good starting point for a discussion of how to solve such problems. E.g. replacing Singletons with the SessionSingletonBase approach from RWT (see Singletons) is of course RAP specific and doesn't work as a generic solution.

From http://dev.eclipse.org/mhonarc/lists/eclipse-incubator-e4-dev/msg00499.html

Back to the top