1. /*
  2. * @(#)ButtonUI.java 1.20 04/04/02
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package javax.swing.plaf;
  8. import javax.swing.AbstractButton;
  9. import javax.swing.GrayFilter;
  10. import javax.swing.Icon;
  11. import javax.swing.ImageIcon;
  12. import java.awt.Insets;
  13. /**
  14. * Pluggable look and feel interface for JButton.
  15. *
  16. * @version 1.20 04/02/04
  17. * @author Jeff Dinkins
  18. */
  19. public abstract class ButtonUI extends ComponentUI {
  20. }