Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse 4 RCP (aka E4) documentation

Is there at least anything other than Vogella's tutorials and his book, which is completely based on those tuts? Examples from his repo are often either incomplete/unfinished/won't run and those examples even don't match the book actually..
I'd like to find at least some javadoc for this, because any step to a side and I'm completely lost on how to accomplish different tasks and what functionality is available.

like image 253
Dmitry Avtonomov Avatar asked May 01 '13 20:05

Dmitry Avtonomov


People also ask

What is Eclipse RCP application?

Eclipse based applications, called Eclipse RCP (Eclipse Rich Client Platform), use the Eclipse framework to create feature-rich stand-alone desktop applications. The Eclipse IDE can be viewed as a special Eclipse application with the focus on supporting software development.

What Eclipse 4?

Eclipse 4 is the next generation platform for building Eclipse-based tools and rich client desktop applications. This new release makes it easier for developers to develop and assemble applications and tools based on the Eclipse platform.

What is Eclipse RCP workbench?

The Eclipse workbench is a powerful UI framework for IDEs and also other applications. It provides many services for a highly integrated and extensible user interfaces.

What is rich client platform in Eclipse?

Version 3.0 introduced the Rich Client Platform (RCP), which is basically a refactoring of the fundamental parts of Eclipse's UI, allowing it to be used for non-IDE applications. Version 3.1 updated RCP with new capabilities, and, most importantly, new tooling support to make it easier to create than before.


2 Answers

Lars Vogel's Tutorials are the most complete and up-to-date documentation on Eclipse 4 development. Second to this is asking questions in Eclipse 4 Community Forum. Last option is to google for specific technical problems, which will in most cases lead you to blog posts from the same people that are active on the forums. (Mainly single supporters like Lars, some Eclipse devs and the guys from www.eclipsesource.com)

I discourage using the wiki, since much of the information may be outdated and may be more confusing than an actual help. Documentation for JFace and SWT can be reused from Eclipse 3.x since there are few to none changes in Eclipse E4.

like image 148
Frank Avatar answered Sep 21 '22 07:09

Frank


E4 is alive and many of its components are now encapsulated in the standard Eclipse Platform. So most of Eclipse 3 docs and books are still relevant, as well as the Eclipse 4 ones.

If you want to understand the theory, you should start searching Eclipse conference slides explaining the Eclipse Platform and plug-ins. Trust me, it might sound old-style, but most of the times I find an EclipseCon Powerpoint or PDF, it is a great presentation, concentrating in 30 minutes the great work of some of the best Eclipse developers. If I had to re-start learning Eclipse, I would start again from some EclipseCon slides talking about Eclipse Plugins and Eclipse E4 Model.

For Eclipse4 or E4, we mean the Eclipse4 Model, which is now part of the Eclipse Platform. The Eclipse IDE itself supports both 3.x and Eclipse4 programming.

If you want to start Eclipse4, you should take a good book or a tutorial and follow it step by step. As an example you have these books:

  • Eclipse RCP (Rich Client Platform) 2nd edition
  • Contributing to the Eclipse IDE Project (free ebook)
  • Eclipse 4 Plug-in Development by Example: Beginner's Guide
  • Instant Eclipse 4 RCP Development How-to

However, there are a lot of sources of information, as many books, web tutorials and blogs. You can find most of them here:

  • https://wiki.eclipse.org/Eclipse_Articles,_Tutorials,_Demos,_Books,_and_More
  • https://wiki.eclipse.org/Eclipse4/Tutorials
  • http://planeteclipse.org/planet/

In my personal list of who to follow, I could include: Vogella RCP, EclipseSource, Tom Schindl, OpCoach, RCPVision, Kai Toedter, AllBlue, Wim Yongman, and all the E4 Contributors who are writing articles. But it is unfair not to mention all of them.

If you're not satisfied by docs and tutorials, please file a bug to the Eclipse Platform; mention "missing documents to use E4" and specify what you need. The Platform UI team will take care of this, either by linking the existing documentation to the above wiki page or by creating the missing docs.

Note: Several of the developers of the Eclipse E4 and Platform team contributed to the success of the technology by fixing bugs, writing code, documents, tutorials, and opening businesses based on this.

Eclipse committers are writing most of the existing documents, and they usually go to conferences. So, usually, you get their very best at the Eclipse Conferences. If you get their slides, you can get the best of some Eclipse and Java Champions, condensed in 30 slides, or in a video of 30 minutes.

You can start contributing to open source, by following tutorials, like those written by Eclipse Committers, and then you can give back by writing documents to capture your achievements ;)

But, keep in mind that a tutorial is not a book. There is a different process behind. Thankfully those great developers found the time to write code and documentation at the same time.

like image 24
psuzzi Avatar answered Sep 21 '22 07:09

psuzzi