FileDocCategorySizeDatePackage
MotifCheckBoxUI.javaAPI DocJava SE 5 API1701Fri Aug 26 14:54:46 BST 2005com.sun.java.swing.plaf.motif

MotifCheckBoxUI

public class MotifCheckBoxUI extends MotifRadioButtonUI
MotifCheckBox implementation

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.23 12/19/03
author
Rich Schiavi

Fields Summary
private static final MotifCheckBoxUI
motifCheckBoxUI
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 motifCheckBoxUI;
    
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;
	}
    
protected voiduninstallDefaults(javax.swing.AbstractButton b)

	super.uninstallDefaults(b);
	defaults_initialized = false;