Java JButton Settings customize(AbstractButton btn)

Here you can find the source of customize(AbstractButton btn)

Description

customize

License

Open Source License

Declaration

public static AbstractButton customize(AbstractButton btn) 

Method Source Code

//package com.java2s;
/*/* ww w  .  jav a  2  s  . co  m*/
 * Copyright (C) 2004 Nicky BRAMANTE
 *
 * This file is part of FreeQueryBuilder
 *
 * FreeQueryBuilder 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 2
 * 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 * Send questions or suggestions to nickyb@interfree.it
 */

import java.awt.Dimension;

import javax.swing.AbstractButton;

public class Main {
    public final static Dimension CUSTOM_BUTTON_DIMENSION = new Dimension(
            80, 20);

    public static AbstractButton customize(AbstractButton btn) {
        return setAllSize(btn, CUSTOM_BUTTON_DIMENSION);
    }

    public static AbstractButton setAllSize(AbstractButton btn,
            Dimension dim) {
        btn.setPreferredSize(dim);
        btn.setMaximumSize(dim);
        btn.setMinimumSize(dim);

        return btn;
    }
}

Related

  1. clickButton(final Window window, final String buttonText)
  2. configureOKAndCancelButtons(JPanel panel, Action ok, Action cancel)
  3. configureTextAndMnemonic(AbstractButton button, String text)
  4. confirm(Component comp, String title, String message, int buttons, int type)
  5. creaStyledButton(int style)
  6. decoratedToSimpleButton(final T button)
  7. doClick(final AbstractButton button)
  8. doHover(boolean b, AbstractButton... btns)
  9. doSetText(final AbstractButton abstractButton, final String text)