FileDocCategorySizeDatePackage
MetalPopupMenuSeparatorUI.javaAPI DocJava SE 5 API1198Fri Aug 26 14:58:08 BST 2005javax.swing.plaf.metal

MetalPopupMenuSeparatorUI

public class MetalPopupMenuSeparatorUI extends MetalSeparatorUI
A Metal L&F implementation of PopupMenuSeparatorUI. This implementation is a "combined" view/controller.
version
1.8 12/19/03
author
Jeff Shapiro

Fields Summary
Constructors Summary
Methods Summary
public static javax.swing.plaf.ComponentUIcreateUI(javax.swing.JComponent c)

        return new MetalPopupMenuSeparatorUI();
    
public java.awt.DimensiongetPreferredSize(javax.swing.JComponent c)

 
        return new Dimension( 0, 4 );
    
public voidpaint(java.awt.Graphics g, javax.swing.JComponent c)

        Dimension s = c.getSize();

        g.setColor( c.getForeground() );
        g.drawLine( 0, 1, s.width, 1 );

        g.setColor( c.getBackground() );
        g.drawLine( 0, 2, s.width, 2 );
        g.drawLine( 0, 0, 0, 0 );
        g.drawLine( 0, 3, 0, 3 );