tags:

views:

306

answers:

3

I have a Java desktop application running from the command line. I need to put a rich GUI on it and Eclipse RCP would be ideal, except there are some problems with it - especially the learning curve.

The Eclipse RCP book is out of date (written for Eclipse 3.1). I don't know how up-to-date and complete other resources for learning Eclipse RCP are. The e4 project was supposed to simplify this learning curve, but there are few resources for learning e4.

Can anyone offer some insight as to whether Eclipse RCP or e4 is better suited to building a rich GUI for a desktop application given that I'll have to deal with the learning curve for whichever one I choose?

Thanks.

Dean

A: 

As you say, there's not too much literature available, I'd stick with the bigger community, and that's almost certainly Eclipse 3.4/3.5. I can recommend this book, even if it doesn't cover RCP. For the RCP part I'd just start with one of the samples (the basic email rcp app) and experiment. The eclipse newsgroups are a great source of information to learn and get help.

zedoo
The 2nd ed. of the Eclipse RCP book is available as a Safari Rough Cuts http://www.informit.com/store/product.aspx?isbn=0321612337 so I'll use e3 RCP for this project.
Dean Schulze
A: 

U should firstly have knowledge of SWT,JFace and after study small tutorials of Lars Vogella from Internet. And definitely After one or two days u can easily develop ur Desktop Application. Vineet Here From India

vineet
A: 

Eclipse 3.x

The learning curve for Eclipse development in general is quite steep indeed, no matter if you are developing plug-ins or standalone RCP applications. The Eclipse Plug-ins (3rd Edition) book mentioned in zedoo's answer is a very good starting point for understanding the underlying concepts and APIs of the Eclipse 3.x stream. As far as online resources go, Lars Vogel has lots of very detailed and useful tutorials on his website for RCP deleopment and Eclipse plug-in development in general.

e4

The Eclipse 4.0 SDK Early Adopter Release main page has links to a couple of tutorials and a very detailed release notes, and most importantly a new & noteworthy page with all the shiny new features compared to the 3.x stream.

Conclusion

Of course e4 is still not as mature as Eclipse 3.6, the latest release in the 3.x stream, which is clearly a downside. However, as far as I can see after playing around with it recently, the APIs and the whole development methodology have been streamlined, which makes it easier to get up and running. Documentation is still a bit sparse, but new tutorials and blog posts keep popping up frequently and there is more and more buzz around e4 in general.
Starting directly with e4 would save you the trouble of learning and eventually unlearning the 3.x API, so if you are in it for the long run, I would say go for e4 now. If this is just a relatively short one-off project and you want to reduce the risk, then go for 3.x and reap the benefits of the mature code base and lots of documentation.

Zsolt Török

related questions