Uses of Package
org.jsurveylib.gui.swing.util

Packages that use org.jsurveylib.gui.swing.util
org.jsurveylib.gui.swing.renderer   
org.jsurveylib.gui.swing.util   
 

Classes in org.jsurveylib.gui.swing.util used by org.jsurveylib.gui.swing.renderer
Bag
          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(); <p/> // Add a label c.add(new JLabel("Foo"), b.cell(1,1)); <p/> // Add a textfield that spans several columns c.add(textfield, b.next().fillx().colspan(3)); <p/> // For the next row, add a big scrolling thing c.add(myScrollPane, b.nextRow().fillboth().colspan(4));

Copyright (c)2007, Daniel Kaplan

 

Classes in org.jsurveylib.gui.swing.util used by org.jsurveylib.gui.swing.util
Bag
          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(); <p/> // Add a label c.add(new JLabel("Foo"), b.cell(1,1)); <p/> // Add a textfield that spans several columns c.add(textfield, b.next().fillx().colspan(3)); <p/> // For the next row, add a big scrolling thing c.add(myScrollPane, b.nextRow().fillboth().colspan(4));

Copyright (c)2007, Daniel Kaplan