1 /*2 * @(#)ButtonUI.java 1.20 04/04/023 *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 9 import javax.swing.AbstractButton ;10 import javax.swing.GrayFilter ;11 import javax.swing.Icon ;12 import javax.swing.ImageIcon ;13 import java.awt.Insets ;14 15 /**16 * Pluggable look and feel interface for JButton.17 *18 * @version 1.20 04/02/0419 * @author Jeff Dinkins20 */21 public abstract class ButtonUI extends ComponentUI {22 }23