Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse RCP vs Eclipse

I'm beginning to develop a GUI based plugin and doing my homework by doing plugin guides ect. But I'm noticing different guides out there for Eclipse plugins and Eclipse RCP plugins. However I can't get a straight forward difference between the two so am wondering which route I should be going down and should I be using standard Eclipse or be using Eclipse for RCP development?

like image 399
SteWoo Avatar asked Feb 02 '13 22:02

SteWoo


People also ask

What is the difference between Eclipse and Eclipse RCP?

Eclipse-based applications which are not primarily used as software development tools are called Eclipse RCP applications. An Eclipse 4 RCP application typically uses the base components of the Eclipse platform and adds additional application specific components.

What is Eclipse RCP?

While the Eclipse platform is designed to serve as an open tools platform, it is architected so that its components could be used to build just about any client application. The minimal set of plug-ins needed to build a rich client application is collectively known as the Rich Client Platform.

What is RCP programming?

The rich client platform (RCP) is a programmer tool that makes it easier to integrate independent software components, where most of the data processing occurs on the client side.


1 Answers

If you want to extend the Eclipse IDE, as in this tutorial, a simple classic Eclipse is enough to develop "Eclipse plugins".

The Eclipse platform is structured as a core runtime engine and a set of additional features that are installed as platform plug-ins.
Plug-ins contribute functionality to the platform by contributing to pre-defined extension points. The workbench UI is contributed by one such plug-in.
When you start up the workbench, you are not starting up a single Java program. You are activating a platform runtime which can dynamically discover registered plug-ins and start them as needed.

When you want to provide code that extends the platform, you do this by defining system extensions in your plug-in.
The platform has a well-defined set of extension points - places where you can hook into the platform and contribute system behavior.
From the platform's perspective, your plug-in is no different than basic plug-ins like the resource management system or the workbench itself.


But if you want to do an independent application, based on the Eclipse platform, then it is an RCP ("Rich Client Platform"), and you can follow this tutorial.

Eclipse-based applications which are not primarily used as software development tools are called Eclipse RCP applications.
An Eclipse 4 RCP application typically uses the base components of the Eclipse platform and adds additional application specific components.

You would need then an "Eclipse for RCP and RAP Developers" (from the download page).

like image 139
VonC Avatar answered Sep 30 '22 07:09

VonC