vote up 4 vote down star

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).

flag

60% 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

4 Answers

vote up 1 vote down

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

link|flag
vote up 1 vote down

The term "Wizard" is overloaded, so I'm not entirely sure what you mean, but have you looked at Spring Web Flow?

link|flag
vote up 0 vote down

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|flag
vote up -1 vote down

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|flag

Your Answer

Get an OpenID
or

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