Java Swing BoxLayout createVertBox(Component... comps)

Here you can find the source of createVertBox(Component... comps)

Description

create Vert Box

License

Open Source License

Declaration

public static Box createVertBox(Component... comps) 

Method Source Code


//package com.java2s;
/*//from  w  ww  .  java 2s .  co  m
 * Xapp (pronounced Zap!), A automatic gui tool for Java.
 * Copyright (C) 2009 David Webber. All Rights Reserved.
 *
 * The contents of this file may be used under the terms of the GNU Lesser
 * General Public License Version 2.1 or later.
 *
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 * for the specific language governing rights and limitations under the
 * License.
 */

import javax.swing.*;

import java.awt.*;

public class Main {
    public static Box createVertBox(Component... comps) {
        return createBox(BoxLayout.PAGE_AXIS, comps);
    }

    public static Box createBox(int axis, Component... comps) {
        Box r = new Box(axis);
        for (Component comp : comps) {
            r.add(comp);
        }
        return r;
    }
}

Related

  1. createNorthPanel(JComponent p)
  2. createPanelBoxLayout(Component... components)
  3. createPanelWithBoxLayout()
  4. createTitledPanel(JComponent component, String title)
  5. createTopAndCenter(JComponent top, JComponent center)
  6. createVerticalBox(Component... comps)
  7. createVerticalBox(Component... cs)
  8. createVerticalBoxLayout(Component... components)
  9. execLoop(JComponent editor)