Class CustomButtonUI

All Implemented Interfaces:
PlafConstants

public class CustomButtonUI extends BasicButtonUI implements PlafConstants
CustomButtonUI draws a BackdropBorder in the background of the button. This allows for easy visual customization of buttons.

Usage:

 JButton b = new JButton();
 b.setUI((ButtonUI) CustomButtonUI.createUI(b));
 b.setBorder(new BackdropBorder(....));
 
Author:
Werner Randelshofer