Java JButton Create createButtonsPanel(JComponent... components)

Here you can find the source of createButtonsPanel(JComponent... components)

Description

create Buttons Panel

License

Apache License

Declaration

public static JPanel createButtonsPanel(JComponent... components) 

Method Source Code

//package com.java2s;
/*//from w ww .  j a  v a  2  s.c  o  m
 * Copyright 2008-2014 by Emeric Vernat
 *
 *     This file is part of Java Melody.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.awt.FlowLayout;

import javax.swing.JComponent;

import javax.swing.JPanel;

public class Main {

    public static JPanel createButtonsPanel(JComponent... components) {
        final JPanel buttonsPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
        buttonsPanel.setOpaque(false);
        for (final JComponent component : components) {
            buttonsPanel.add(component);
        }
        return buttonsPanel;
    }
}

Related

  1. createButton16(final ImageIcon icon)
  2. createButtonFooter(JButton ok, JButton cancel)
  3. createButtonGroup(javax.swing.AbstractButton... buttons)
  4. createButtonPanel()
  5. createButtonRow(List buttons)
  6. createCheckbox(String boxlabel, String[] buttons, boolean[] checked, ActionListener al)
  7. createCustomButton(Action a)
  8. CreateFlatButton()
  9. createGameRadioButton(String answer, int fontSize)