FileDocCategorySizeDatePackage
WindowsDesktopPaneUI.javaAPI DocJava SE 5 API1475Fri Aug 26 14:54:48 BST 2005com.sun.java.swing.plaf.windows

WindowsDesktopPaneUI

public class WindowsDesktopPaneUI extends BasicDesktopPaneUI
Windows desktop pane.

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.

version
%i% 12/19/03
author
David Kloba

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

        return new WindowsDesktopPaneUI();
    
protected voidinstallDefaults()

        super.installDefaults();
    
protected voidinstallDesktopManager()

	desktopManager = desktop.getDesktopManager();
	if(desktopManager == null) {
	    desktopManager = new WindowsDesktopManager();
	    desktop.setDesktopManager(desktopManager);
	}
    
protected voidinstallKeyboardActions()

	super.installKeyboardActions();

        // Request focus if it isn't set.
        if(!desktop.requestDefaultFocus()) {
            desktop.requestFocus();
        }