/*
* @(#)ToolBarUI.java 1.14 03/12/19
*
* Copyright 2004 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package javax.swing.plaf;
import java.awt.Insets;
import javax.swing.JToolBar;
/**
* Pluggable look and feel interface for JToolBar.
*
* @version 1.14 12/19/03
* @author Georges Saab
*/
public abstract class ToolBarUI extends ComponentUI {
}
|