What libraries/tools do you have in your Java Swing Tool set?
- XUL
- Layout Managers
- Packagers/Installers
- Books
- etc.....
|
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Here is what I use:
All these libraries above are open source. In addition to that, I have my own set of utility classes that, among other things, help integrating the GUI with a Dependency Injection library: I have a set of utilities for HiveMind container (for the few developers that know it and still use it), and another -in preparation, soon open sourced- for Guice. I have read no specific book about Swing development, but I have used Swing for about 10 years now (not continuously however). Hence I have no recommendation in terms of books (unfortunately, because I admit that this is one weak point of Swing). "Filthy Rich Clients" book is useful only if:
|
||||
|
|
|
Spring Rich Client and JGoodies are the base of my team's GUI applications; Spring remoting for connecting to server, and Java Web Start for deployement. |
|||
|
|
|
I pretty much only use GridBagLayout for production code unless the GUI is so simple that I can get away with a BorderLayout. I sometimes look into other LayoutManagers, but never really found the need to change since GridBagLayout can do pretty much anything I need. The installer I use for my own stuff is izPack and works for me so far. It has been a long time since I really read any Swing books now. Obviously the Java Swing one from O'Reilly is the de facto bible :) When it comes to books on design I do have a lot of recommendations but that might be off topic? |
|||||||
|
|
Netbeans with the GUI WYSIWYG editor. It makes creating Java 6 Swing forms very easy. I subclass the forms to add functionality to ensure continued tool support. I've also used SwingX for widgets like date pickers and collapsible panels. Plus there's always SwingWorker in the JRE for running background jobs that update the UI. |
|||
|
|
|
Two useful Swing related libraries:
|
|||
|
|
|
Not really a tool, but I've been working on annotating important things in the JavaDocs for Swing (and several other APIs). Too many methods contain surprises like "don't call this if you want a refresh, call X instead". I use a tool that I built for my PhD to access that kind of info (it highlights calls in the source code to methods that have those sort of things). IMHO, the JavaDocs for swing are difficult to use because they combine information that is meant for people using an object and people subclassing existing classes. |
|||||
|
|
For books, take a look at the answers to Swing Programming Books. |
|||
|
|