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

WindowsCheckBoxUI

public class WindowsCheckBoxUI extends WindowsRadioButtonUI
Windows check box.

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
1.20 12/19/03
author
Jeff Dinkins

Fields Summary
private static final WindowsCheckBoxUI
windowsCheckBoxUI
private static final String
propertyPrefix
private boolean
defaults_initialized
Constructors Summary
Methods Summary
public static javax.swing.plaf.ComponentUIcreateUI(javax.swing.JComponent c)

    
    // ********************************
    //          Create PLAF
    // ********************************
         
	return windowsCheckBoxUI;
    
public java.lang.StringgetPropertyPrefix()

	return propertyPrefix;
    
public voidinstallDefaults(javax.swing.AbstractButton b)

	super.installDefaults(b);
	if(!defaults_initialized) {
	    icon = UIManager.getIcon(getPropertyPrefix() + "icon");
	    defaults_initialized = true;
	}
    
public voiduninstallDefaults(javax.swing.AbstractButton b)

	super.uninstallDefaults(b);
	defaults_initialized = false;