-
Archives
- September 2010
- August 2010
- March 2010
- October 2009
- September 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- March 2008
- February 2008
- January 2008
- November 2007
- October 2007
- September 2007
- July 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- September 2006
- August 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
-
Meta
Category Archives: SWT
A tour through the Eclipse start-up options
I was tweaking the start-up options on Eclipse 3.1M6 on my PowerBook and I was curious what all these things meant. Some of these are Mac-only and some probably apply to all platforms. I welcome feedback on what other platforms … Continue reading
Will Apple be supporting Eclipse and SWT better in the future?
Marcello pointed out this Apple job posting for a Java Frameworks Engineer in the Eclipse-Mac Google group: “We are interested in an energetic developer who can master our Java implementation (Java, Obj-C, C & C++) and contribute to making Mac … Continue reading
Posted in Eclipse, Mac OS X, SWT, Swing
4 Comments
Eclipse JFace tip: How to add column headers to a TableViewer
So you’ve created a JFace TableViewer, via: TableViewer tableViewer = new TableViewer(parent); The scenario: You have already set up the label provider, the content provider and the (model) input. The label provider, which extends ITableLabelProvider returns values for two columns. … Continue reading
Azureus – killer SWT app
I’m helping out a friend by helping him install Fedora Core 3. I’d rather get him to use OS X, but Fedora is free and lets him leverage some existing hardware. One step at a time, right? Fedora (which in … Continue reading
Posted in SWT
Comments Off
Proposal to reduce repetition with Swing and SWT listeners
DRY – Don’t Repeat Yourself We know that this is good, since it reduces code maintenance, so why do we persist with writing listeners like this: (Note that this is example is written with SWT; Swing looks almost the same.) … Continue reading
Posted in Desktop Java, Programming, SWT, Swing
2 Comments
A Desktop Java Renaissance
I finally got used to the new look of JavaLobby and am glad that the gliding nav toolbar stopped gliding. That’s one of those features that seems glitzy but just ends up distracting the user. Anyways, I responded to two … Continue reading
Posted in Desktop Java, JFace, RCP, SWT, Swing
4 Comments
Native Browsers in Java on Windows (and Linux)
Last night I looked at embedded native browser components in Java, focusing on Mac OS X. Tonight we’ll look at what’s available on Windows. There are at least 4 contenders, perhaps more. In addition, there are 3 browser choices: Internet … Continue reading
Posted in Eclipse, RCP, SWT, Swing
4 Comments
Browser components in Java
I’m currently putting together an application that will be implemented in SWT/JFace/RCP/Java, Swing/Spring Rich/Java, and Cocoa/Objective-C. I’m doing to see what they will look like on OS X, plus to learn a little more about the RCP, a lot more … Continue reading
Posted in SWT, Swing
2 Comments
What to do when you get an UnsatisifiedLinkError when running an SWT or JFace application
So you’re trying to run an SWT application (or JFace, since JFace relies on SWT) inside Eclipse and you get the dreaded UnsatisfiedLinkError. This usually appears as one of the following: Exception in thread “main” java.lang.UnsatisfiedLinkError: no swt-pi-carbon-3063 in java.library.path … Continue reading
Posted in Eclipse, JFace, SWT
18 Comments