tags:

views:

65

answers:

3

There're so many Eclipse editions. I don't know well in structure of Eclipse IDE, but as I know, Eclipse is basically an empty frame for strong plug-ins. This means there should be an empty shell edition, but I couldn't find it. Most basic editions already contain many tools in it.

Where is it? And how can I obtain it?

+4  A: 

I think you're referring to the Rich Client Platform? You'll need to download the RCP SDK to get started, then when the time comes to deploy check out the FAQ for what you need.

crazyscot
I think this is the minimal eclipse installation for building a platform application.
greg0ire
Depends what the asker actually wants to do! :)
crazyscot
I just wanted to test possibility of building my own development tool (IDE) :) This seems most suitable edition for my purpose...
Eonil
+1  A: 

Hi, I think you are referring to the platform runtime binary, available here : http://download.eclipse.org/eclipse/downloads/drops/R-3.6-201006080911/index.php From eclipse download page, click "other downloads" next to eclipse classic, and then click "3.6" on the next page.

greg0ire
+2  A: 

As mention in the recent serie "Eclipse is…", Eclipse is a bit more than "an empty frame for strong plug-ins". It is also:

You can see all the Helios packages (distributions) here, the smallest one being the Eclipse IDE for Java Developers (99MB).
You can compare those packages in term of content.

Only the RCP edition would allow you to build a minimal RCP application, like the one presented in this RCP tutorial:

alt text

VonC