FileDocCategorySizeDatePackage
MotifIconFactory.javaAPI DocJava SE 6 API13170Tue Jun 10 00:21:56 BST 2008com.sun.java.swing.plaf.motif

MotifIconFactory

public class MotifIconFactory extends Object implements Serializable
Icon factory for the CDE/Motif Look and Feel

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. 1.20 04/27/99

author
Georges Saab

Fields Summary
private static Icon
checkBoxIcon
private static Icon
radioButtonIcon
private static Icon
menuItemCheckIcon
private static Icon
menuItemArrowIcon
private static Icon
menuArrowIcon
Constructors Summary
Methods Summary
public static javax.swing.IcongetCheckBoxIcon()

	if (checkBoxIcon == null) {
	    checkBoxIcon = new CheckBoxIcon();
	}
	return checkBoxIcon;
    
public static javax.swing.IcongetMenuArrowIcon()

	if (menuArrowIcon == null) {
	    menuArrowIcon = new MenuArrowIcon();
	}
	return menuArrowIcon;
    
public static javax.swing.IcongetMenuItemArrowIcon()

	if (menuItemArrowIcon == null) {
	    menuItemArrowIcon = new MenuItemArrowIcon();
	}
	return menuItemArrowIcon;
    
public static javax.swing.IcongetMenuItemCheckIcon()

        return null;
    
public static javax.swing.IcongetRadioButtonIcon()

	if (radioButtonIcon == null) {
	    radioButtonIcon = new RadioButtonIcon();
	}
	return radioButtonIcon;