19
2005
SWT is good, JFace is great, RCP looks flippin awesome!
When I started PasswordSafeSWT, it was a pure SWT app, created almost entirely using SWT Designer. The productivity of that GUI tool is awesome. But the code lacked a little maintainability with all those anonymous event handlers (as easy as they were to edit graphically), so it was time to clean things up.
For my next step, I moved things over to JFace to take advantage of an “Action-style” app. Like in Swing, JFace gives you an action model where you can associate accellerators, icons and logic using a command pattern, and then attached your newly created actions to toolbars and menus.
Because SWT Designer also supports JFace, it was a snack to rearchitect. I now have a dozen self-describing commands, and a very lean main program – all looking much more maintainable. Plus I get status bar management out of the box which was a nice touch.
I’ve also taken advantage of the ListViewer and TreeViewer objects to do the MVC over the main db. Geez I love those controls. The way they’ve designed them is so pragmatic. I can just pass in my real datamodel and let them do the adapting for me. I could never really grok the complexities of the Model/Adaptor stuff that Swing provided, but the Viewer stuff in SWT was a snack.
Once my JFace app was happily running, I started to think about using a Help system. Javahelp would be an obvious choice, but for that fact that my app looks so native now I didn’t want to spoil it. I thought it might be nice to try and use the Eclipse help system somehow. More googling.
Then I came across the Eclipse RCP. And it looks absolutely awesome. There were some great tutorial links off Martin Perez’s blog and a great 3 part introduction off the articles section of >RCP site and now I’m very keen to see some more. Since I’m already using the jars for JFace/SWT/OSGI for my standalone app, I’m keen to see how much work it would be to make the jump to a whole RCP app – and then add a pinch of Eclipse help to the equation. I suspect it may be a bit of work, and I’ll get a Jface version out the door before making the investment in anything more grand, but I’m definitely keen to explore more.
2 Comments + Add Comment
Leave a comment
Glen Smith
Archives
- January 2012
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- April 2011
- March 2011
- January 2011
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005
- September 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- February 2005
- January 2005
- December 2004
- November 2004
- October 2004
- September 2004
- August 2004
- July 2004
- June 2004
- May 2004
- March 2004
- February 2004
- January 2004
- December 2003
- November 2003
- October 2003
- September 2003

An article by Glen





Glen, it shouldn’t be very difficult to port your JFace application to RCP. With Eclipse 3.1 recent milestones, this taks it’s easier than when I started with Eclipse 3.0.1
Be sure of taking a look to the Eclipse 3.1 RCP Wizards (New Plugin -> RCP), and the Eclipse Product Exporter to deploy your application, and you almost will be ready.
Greetings, Martin
Hi Glen
what was the outcome of your switch to RCP? Got any stories to tell?