protected class CheckboxMenuItem.AccessibleAWTCheckboxMenuItem
extends AccessibleAWTMenuItem
implements AccessibleAction, AccessibleValue

Inner class of CheckboxMenuItem used to provide default support for accessibility. This class is not meant to be used directly by application developers, but is instead meant only to be subclassed by menu component developers.

This class implements accessibility support for the CheckboxMenuItem class. It provides an implementation of the Java Accessibility API appropriate to checkbox menu item user-interface elements.

protected CheckboxMenuItem.AccessibleAWTCheckboxMenuItem()

public boolean doAccessibleAction(int)

Perform the specified Action on the object

Parameters

int i: zero-based index of actions

public AccessibleAction getAccessibleAction()

Get the AccessibleAction associated with this object. In the implementation of the Java Accessibility API for this class, return this object, which is responsible for implementing the AccessibleAction interface on behalf of itself.

public int getAccessibleActionCount()

Returns the number of Actions available in this object. If there is more than one, the first one is the "default" action.

public String getAccessibleActionDescription(int)

Return a description of the specified action of the object.

Parameters

int i: zero-based index of the actions

public AccessibleRole getAccessibleRole()

Get the role of this object.

public AccessibleValue getAccessibleValue()

Get the AccessibleValue associated with this object. In the implementation of the Java Accessibility API for this class, return this object, which is responsible for implementing the AccessibleValue interface on behalf of itself.

public Number getCurrentAccessibleValue()

Get the value of this object as a Number. If the value has not been set, the return value will be null.

public Number getMaximumAccessibleValue()

Get the maximum value of this object as a Number.

public Number getMinimumAccessibleValue()

Get the minimum value of this object as a Number.

public boolean setCurrentAccessibleValue(Number)

Set the value of this object as a Number.

Parameters