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

MotifRadioButtonMenuItemUI

public class MotifRadioButtonMenuItemUI extends BasicRadioButtonMenuItemUI
MotifRadioButtonMenuItem 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.45 07/17/06
author
Georges Saab
author
Rich Schiavi

Fields Summary
protected ChangeListener
changeListener
Constructors Summary
Methods Summary
protected javax.swing.event.ChangeListenercreateChangeListener(javax.swing.JComponent c)

	return new ChangeHandler();
    
protected javax.swing.event.MouseInputListenercreateMouseInputListener(javax.swing.JComponent c)

	return new MouseInputHandler();
    
public static javax.swing.plaf.ComponentUIcreateUI(javax.swing.JComponent b)

        return new MotifRadioButtonMenuItemUI();
    
protected voidinstallListeners()

	super.installListeners();
        changeListener = createChangeListener(menuItem);
        menuItem.addChangeListener(changeListener);	
    
protected voiduninstallListeners()

	super.uninstallListeners();
	menuItem.removeChangeListener(changeListener);