FOR INTERNAL USE ONLY.
Using this class saves you lots of keystrokes when
slugging it out with GridBagLayout:
Container c = new JPanel(new GridBagLayout());
Bag b = new Bag();
// Add a label
c.add(new JLabel("Foo"), b.cell(1,1));
// Add a textfield that spans several columns
c.add(textfield, b.next().fillx().colspan(3));
// For the next row, add a big scrolling thing
c.add(myScrollPane, b.nextRow().fillboth().colspan(4));
Copyright (c)2007, Daniel Kaplan
Bag() -
Constructor for class org.jsurveylib.gui.swing.util.Bag
FOR INTERNAL USE ONLY. This informs every SurveyListener that the survey has
been finished and makes isFinished() return true and informs all survey listeners.
FOR INTERNAL USE ONLY. This will go to the last page or the page
that has blank required/invalid questions, considering
that some pages may be skipped.
Deprecated.This entire class has been deprecated because it has been
moved into the package "org.jsurveylib.gui.swing". This class will be
removed in future versions so please update your package to use the
"org.jsurveylib.gui.swing" version. The interface was not changed in
any way, it was simply moved to a different package.