protected class Checkbox.AccessibleAWTCheckbox
extends AccessibleAWTComponent
implements ItemListener, AccessibleAction, AccessibleValue

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

public Checkbox.AccessibleAWTCheckbox()

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 AccessibleStateSet getAccessibleStateSet()

Get the state set 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 void itemStateChanged(ItemEvent)

Fire accessible property change events when the state of the toggle button changes.

Parameters

public boolean setCurrentAccessibleValue(Number)

Set the value of this object as a Number.

Parameters