Java JButton Create CreateButton(final String name, final String text, final ImageIcon icon, final JPanel panel)

Here you can find the source of CreateButton(final String name, final String text, final ImageIcon icon, final JPanel panel)

Description

Create Button

License

Open Source License

Declaration

public static JButton CreateButton(final String name, final String text, final ImageIcon icon,
            final JPanel panel) 

Method Source Code


//package com.java2s;
/*/*  w  w w.  j ava2  s. c o  m*/
 * Copyright (C) 2013 by Array Systems Computing Inc. http://www.array.ca
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
 * Software Foundation; either version 3 of the License, or (at your option)
 * any later version.
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, see http://www.gnu.org/licenses/
 */

import javax.swing.*;

public class Main {
    public static JButton CreateButton(final String name, final String text, final ImageIcon icon,
            final JPanel panel) {
        JButton button = new JButton();
        button.setName(name);
        button = new JButton();
        button.setIcon(icon);
        button.setBackground(panel.getBackground());
        button.setText(text);
        button.setActionCommand(name);
        return button;
    }
}

Related

  1. createAddRemoveButtonPanel(Action addAction, Icon addIcon, String addToolTip, Action removeAction, Icon removeIcon, String removeToolTip, int axis)
  2. createButton(Action action)
  3. createButton(Action action)
  4. createButton(Action action)
  5. createButton(char mnemonic, Action action, Icon icon)
  6. createButton(Icon icon, String tooltip, String ac)
  7. createButton(ImageIcon icon, String text)
  8. createButton(String aText, String aTooltip, ActionListener aListener)
  9. createButton(String name, ActionListener listener)