Lines Matching refs:BoxLayout

42  *         <P ALIGN="CENTER"><IMG SRC="doc-files/BoxLayout-1.gif"
54 * <p> The BoxLayout manager is constructed with an axis parameter that
86 * BoxLayout attempts to arrange components
91 * BoxLayout attempts to make all the components
94 * then BoxLayout aligns that component vertically,
102 * BoxLayout attempts to make all components in the column
111 * Instead of using BoxLayout directly, many programs use the Box class.
112 * The Box class is a lightweight container that uses a BoxLayout.
113 * It also provides handy methods to help you use BoxLayout well.
119 href="http://java.sun.com/docs/books/tutorial/uiswing/layout/box.html">How to Use BoxLayout</a>,
138 public class BoxLayout implements LayoutManager2, Serializable {
170 * <code>BoxLayout.X_AXIS</code>,
171 * <code>BoxLayout.Y_AXIS</code>,
172 * <code>BoxLayout.LINE_AXIS</code> or
173 * <code>BoxLayout.PAGE_AXIS</code>
178 public BoxLayout(Container target, int axis) {
188 * Constructs a BoxLayout that
193 * <code>BoxLayout.X_AXIS</code>,
194 * <code>BoxLayout.Y_AXIS</code>,
195 * <code>BoxLayout.LINE_AXIS</code> or
196 * <code>BoxLayout.PAGE_AXIS</code>
201 BoxLayout(Container target, int axis, PrintStream dbg) {
220 * <code>BoxLayout.X_AXIS</code>,
221 * <code>BoxLayout.Y_AXIS</code>,
222 * <code>BoxLayout.LINE_AXIS</code> or
223 * <code>BoxLayout.PAGE_AXIS</code>
245 * BoxLayout constructor
291 * BoxLayout constructor
317 * BoxLayout constructor
342 * BoxLayout constructor
369 * BoxLayout constructor
386 * BoxLayout constructor
401 * BoxLayout constructor
464 throw new AWTError("BoxLayout can't be shared");