public class

WindowsInternalFrameUI

extends BasicInternalFrameUI
java.lang.Object
   ↳ javax.swing.plaf.ComponentUI
     ↳ javax.swing.plaf.InternalFrameUI
       ↳ javax.swing.plaf.basic.BasicInternalFrameUI
         ↳ com.sun.java.swing.plaf.windows.WindowsInternalFrameUI

Class Overview

Windows rendition of the component.

Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. A future release of Swing will provide support for long term persistence.

Summary

[Expand]
Inherited Fields
From class javax.swing.plaf.basic.BasicInternalFrameUI
Public Constructors
WindowsInternalFrameUI(JInternalFrame w)
Public Methods
static ComponentUI createUI(JComponent b)
void installDefaults()
void installUI(JComponent c)
Configures the specified component appropriate for the look and feel.
void uninstallDefaults()
Protected Methods
DesktopManager createDesktopManager()
JComponent createNorthPane(JInternalFrame w)
[Expand]
Inherited Methods
From class javax.swing.plaf.basic.BasicInternalFrameUI
From class javax.swing.plaf.ComponentUI
From class java.lang.Object

Public Constructors

public WindowsInternalFrameUI (JInternalFrame w)

Public Methods

public static ComponentUI createUI (JComponent b)

public void installDefaults ()

public void installUI (JComponent c)

Configures the specified component appropriate for the look and feel. This method is invoked when the ComponentUI instance is being installed as the UI delegate on the specified component. This method should completely configure the component for the look and feel, including the following:

  1. Install any default property values for color, fonts, borders, icons, opacity, etc. on the component. Whenever possible, property values initialized by the client program should not be overridden.
  2. Install a LayoutManager on the component if necessary.
  3. Create/add any required sub-components to the component.
  4. Create/install event listeners on the component.
  5. Create/install a PropertyChangeListener on the component in order to detect and respond to component property changes appropriately.
  6. Install keyboard UI (mnemonics, traversal, etc.) on the component.
  7. Initialize any appropriate instance data.

Parameters
c the component where this UI delegate is being installed

public void uninstallDefaults ()

Protected Methods

protected DesktopManager createDesktopManager ()

protected JComponent createNorthPane (JInternalFrame w)