Here you can find the source of removeButtonBorder(AbstractButton button)
Parameter | Description |
---|---|
button | the button |
public static void removeButtonBorder(AbstractButton button)
//package com.java2s; import javax.swing.*; import java.awt.*; public class Main { /**// ww w. j av a 2 s . co m * Removes the button border. * * @param button the button */ public static void removeButtonBorder(AbstractButton button) { button.setContentAreaFilled(false); button.setMargin(new Insets(0, 0, 0, 0)); button.setBorder(BorderFactory.createEmptyBorder()); } }