up vote 16 down vote favorite
4
share [g+] share [fb]

I'm looking for a wizard library/framework for Java, but it seems all the ones I can find are abandoned and/or lacking in enough documentation to use quickly. Here's the ones I've found, and all appear to be no longer maintained.

I tried using SwingLab's Wizard, but I ran into an issue that was not explained in the documentation and I received no response from the maintainer. I'm hoping someone else knows of a good replacement before I need to re-invent the wheel.

Edit: It appears that the current state of Java does not provide such a framework, and I'll roll my own. Thankfully my needs are extremely limited (a 2 pane wizard).

link|improve this question

67% accept rate
I don't know another framework but maybe you could post the problem you are facing as another question? – Jasper Oct 1 '08 at 20:38
What was your problem? I started using it and I'm having a problem with the fact that when JFileChooser instance returns, their 'validateContents()' never get called and so I can never enable the 'Next' button. Figured the implementors/developers of this library would have fallen on such example by now, but I can't seem to find it any documentation/tutorial. – Jeach Feb 1 '11 at 16:08
Ok, I found the answer to what I was looking for (in the WizardPage.java Javadoc). Basically it says that we can invoke 'userInputReceived(null, null)' ourselves in order to force the validation... which works perfectly! – Jeach Feb 1 '11 at 16:26
feedback

5 Answers

I ran into the same problem about a year ago, and developed CJWizards to fit my need. It's more general-purpose than the other wizards I've found.

The project is a bit stale because I haven't needed it recently, but I'd be happy to help anyone who uses it get going.

It supports bi-directional navigation (so the user can go back, fix something, then move forward again, maintaining the answers they provided on the first pass), and makes it substantially easier to design wizards that branch (when compared with other wizard frameworks I've seen).

The dialog layout is separated into a few layers, so you can add wrapper content, such as the navigation bar on the left of this screenshot to all the steps, or stick in a logo, move the buttons, etc. according to your needs.

Each page of the dialog is essentially a JPanel that you add named widgets to -- the framework looks for named widgets, and monitors them for data which is stored in a map of (widgetName, value).

link|improve this answer
I can recommend this. It has good documentation. Currently requires Apache Commons Logging atm. though; I created a ticket on this. Your Logging framework (if you do use one) may provide appropriate bindings (slf4j does) so this does not have to be an issue. But it’s an unnecessary dependency for a wizard framework. No other complaints yet from my side (currently using it for a project). – Kissaki Nov 16 '10 at 12:52
I can also recommend it, documentation is good enough to get started and so far I am not missing any feature! – Se Norm Jul 6 '11 at 17:55
feedback

A couple of ideas:

  • Have you seen this article about creating dialogs using the java swing api?

  • There is also NSIS (Nullsoft Scriptable Install System) is a professional open source system to create Windows installers. It is designed to be as small and flexible as possible and is therefore very suitable for internet distribution.

link|improve this answer
feedback

There is one in the JFace library (that powers Eclipse) here. But it is for SWT rather than Swing.

link|improve this answer
feedback

I've tried three frameworks before to come into JWF (Java Wizard Framework, the first you enlisted).

It's definitely the clearest and the simplest to use. However, it lacks documentation but if you look at the example provided in the release jar you can use it without any pain.

link|improve this answer
feedback

If you're writing a web application, Spring Web Flow would be an excellent choice. It comes with a lot of nice features out of the box like support for the back button and is very extensible as you'd expect.

link|improve this answer
1  
Wizard: A step by step guide for the user. Also see en.wikipedia.org/wiki/Wizard_%28software%29 – Kissaki Oct 18 '10 at 10:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.