- java.lang.Object
-
- javax.swing.plaf.ComponentUI
-
- javax.swing.plaf.MenuBarUI
-
- javax.swing.plaf.basic.BasicMenuBarUI
-
- javax.swing.plaf.metal.MetalMenuBarUI
-
public class MetalMenuBarUI extends BasicMenuBarUI
Metal implementation ofMenuBarUI. This class is responsible for providing the metal look and feel forJMenuBars.- Since:
- 1.5
- See Also:
MenuBarUI
-
-
Field Summary
-
Fields inherited from class javax.swing.plaf.basic.BasicMenuBarUI
changeListener, containerListener, menuBar
-
-
Constructor Summary
Constructors Constructor Description MetalMenuBarUI()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ComponentUIcreateUI(JComponent x)Creates theComponentUIimplementation for the passed in component.voidinstallUI(JComponent c)Configures the specified component appropriate for the metal look and feel.voiduninstallUI(JComponent c)Reverses configuration which was done on the specified component duringinstallUI.voidupdate(Graphics g, JComponent c)If necessary paints the background of the component, then invokespaint.-
Methods inherited from class javax.swing.plaf.basic.BasicMenuBarUI
createChangeListener, createContainerListener, getMaximumSize, getMinimumSize, installDefaults, installKeyboardActions, installListeners, uninstallDefaults, uninstallKeyboardActions, uninstallListeners
-
Methods inherited from class javax.swing.plaf.ComponentUI
contains, getAccessibleChild, getAccessibleChildrenCount, getBaseline, getBaselineResizeBehavior, getPreferredSize, paint
-
-
-
-
Method Detail
-
createUI
public static ComponentUI createUI(JComponent x)
Creates theComponentUIimplementation for the passed in component.- Parameters:
x- JComponent to create the ComponentUI implementation for- Returns:
- ComponentUI implementation for
x - Throws:
NullPointerException- ifxis null
-
installUI
public void installUI(JComponent c)
Configures the specified component appropriate for the metal look and feel.- Overrides:
installUIin classBasicMenuBarUI- Parameters:
c- the component where this UI delegate is being installed- Throws:
NullPointerException- ifcis null.- See Also:
ComponentUI.uninstallUI(javax.swing.JComponent),JComponent.setUI(javax.swing.plaf.ComponentUI),JComponent.updateUI()
-
uninstallUI
public void uninstallUI(JComponent c)
Reverses configuration which was done on the specified component duringinstallUI.- Overrides:
uninstallUIin classBasicMenuBarUI- Parameters:
c- the component where this UI delegate is being installed- Throws:
NullPointerException- ifcis null.- See Also:
ComponentUI.installUI(javax.swing.JComponent),JComponent.updateUI()
-
update
public void update(Graphics g, JComponent c)
If necessary paints the background of the component, then invokespaint.- Overrides:
updatein classComponentUI- Parameters:
g- Graphics to paint toc- JComponent painting on- Throws:
NullPointerException- ifgorcis null- Since:
- 1.5
- See Also:
ComponentUI.update(java.awt.Graphics, javax.swing.JComponent),ComponentUI.paint(java.awt.Graphics, javax.swing.JComponent)
-
-