Slashdot Mirror


Developing Your First Eclipse RCP Application

An anonymous reader writes "The objective of the Eclipse Rich Client Platform (RCP) is to enable Eclipse to be used in a wide range of end-user applications that are not integrated development environments (IDEs). With the release of Eclipse V3.1, it is easy to create RCP applications. This tutorial will guide you step by step in building your very own RCP application."

10 comments

  1. Bugmenot by kevin_conaway · · Score: 1

    I've never seen a developerworks article that required a login/password but this one does. Bugmenot has several though.

    Anyways, has anyone actually used RCP. How does it compare to Swing?

    1. Re:Bugmenot by g051051 · · Score: 4, Informative

      RCP and Swing are two different things. You want to compare SWT and Swing. And that's a Holy War I'm not inclined to get involved in.

      I'm using RCP to develop an in-house application, and I'm very impressed. Once you get over the huge learning curve (because the RCP framework encompasses such a large set of functionality), it's very nice. The Eclipse PDE is a nice dvelopment environment. The plugin metaphor is very powerful, and seems to work quite well. I'm also using the EMF (Eclipse Modelling Framework), and purchased WindowBuilder Pro to help out with the GUI work.

    2. Re:Bugmenot by ultranova · · Score: 1

      RCP and Swing are two different things. You want to compare SWT and Swing. And that's a Holy War I'm not inclined to get involved in.

      Swing comes with the JRE and is good enough. SWT requires you to bundle the support libraries to each platform your application has to work in. SWT may or may not be better than Swing for the developer, but it introduces platform dependencies beyond having to have the JRE, and it likely won't give any benefits for the end user. It certainly doesn't guarantee decent speed - Azureus uses SWT and its interface is slow like a tarred slug.

      Not much of a war there - SWT, a hundred peasants with nothing but their (self-)righteousness against ten thousand knights of Swing armed to their sharpened steel-tipped incisors ;).

      --

      Forget magic. Any technology distinguishable from divine power is insufficiently advanced.

  2. Sign In by JoeCoder7 · · Score: 1

    Seems to require a username and password From bugmenot.com: wchlib library

  3. Someone tell IBM by Anonymous Coward · · Score: 1, Interesting

    ... that the current version of Eclipse is 3.2.

    1. Re:Someone tell IBM by H0p313ss · · Score: 2, Interesting
      ... that the current version of Eclipse is 3.2.

      Why is this a troll? 3.1 was released a year ago, 3.2 has been out for almost a month. Fully functional beta builds have been available for months.

      An article this out of date is downright embarrassing, or should be to whoever approved it.

      --
      XML is a known as a key material required to create SMD: Software of Mass Destruction
  4. Ugh! dreadful by hey! · · Score: 3, Insightful

    I wouldn't bother. This has to be about the worst tutorial I've ever seen.

    It doesn't even show you any actual code. It takes you through the process of using the IDE, and instructions to paste code (which it doesn't show) from other projects (that you don't have) into files generated by the IDE. In short, it shows you things you could figure out yourself, doesn't show you the things you couldn't.

    It would make more sense just to study the examples provided, or to go to the eclipse RCP web site and look at the far superior tutorials there.

    --
    Post may contain irony: discontinue use if experiencing mood swings, nausea or elevated blood pressure.
  5. Eclipse RCP Success Stories by QuantumFTL · · Score: 3, Interesting

    At Cornell University, my masters project was a snakelike robot arm and companion software control system. With a team of 19 engineers, we put something pretty impressive together, and the only reason we were able to get as far as we did with the GUI was that we used Eclipse RCP as the basis for our program. I've found the interfaces to be very clean and well documented, and the sheer amount of work that Eclipse did for us, both as an IDE and as an RCP framework was amazing.

    I also worked with using Eclipse RCP as the basis for the Maestro scientific analysis and high-level rover planning software, which is currently used on MER and is scheduled to be used on several future exploration and technology missions. Because the program is considered "class A mission critical," it must either be written entirely from scratch, or use a framework which is very stable and has good vendor support. JPL uses a lot of FOSS, and Eclipse RCP was a wonderful tool for our purposes. I used Eclipse to great effect while helping to develop the Science Activity Planner (the public version of which was also called Maestro and covered on slashdot here).

  6. book to learn eclipse by Anonymous Coward · · Score: 0

    for plugins developers : what is the best book you read about Eclipse RCP / plugins ? I want to purchase one but I don't already know which one.

  7. SWT and Swing contrasted by aahmad · · Score: 2, Interesting

    For those trying to decide whether to choose the swing toolkit or the eclipse RCP for your next development project, the following may be useful: http://www.ahmadsoft.org/articles/swingswt/swingsw t.html