vote up 2 vote down star

Which are the reasons to choose the Eclipse Rich Client Platform as the base of my application, instead of just using SWT/JFace?

flag

1 Answer

vote up 3 vote down check

Eclipse RCP is not just a GUI (SWT/JFace), but an OSGi-based platform.

So, you would choose the RCP framework in order to:

  • have a better definition of your different modules
  • manage their lifecycles, and versions compatibility
  • isolate classloader issues.

If your application is just one monolithic GUI font-end, RCP might be a bit overkill.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.