Manuel Selva
Manuel Selva

Reputation: 19050

RCP based on plugins or features?

I have an RCP application based on plugins because I started this app from a simple Mail example.

I am now wondering what is the difference between an RCP application based on features compare to one based on plugins ?

For information, my RCP will maybe require some advanced features such as headless build, or self update. May be this can impact on the choice of using plugins or features as basis?

Upvotes: 1

Views: 823

Answers (2)

user847988
user847988

Reputation: 984

Very useful tutorial from ibm for memory leaks in rcp:

http://www.ibm.com/developerworks/library/j-rcp2/index.html

Upvotes: 0

VonC
VonC

Reputation: 1324787

Since features are just a collection of plugins (aka, a "packaging" process), you should be able to do in a PDE headless build what you can do with the PDE GUI.

The PDE build page does mention:

Building plug-ins, fragments or features consists of the 3 stages: fetch, generate scripts and build that are described bellow.

You could have some issue for modified plugin, but building features or a final product should work.

Upvotes: 2

Related Questions