javax.accessibility

Interface AccessibleExtendedComponent

public interface AccessibleExtendedComponent extends AccessibleComponent

Objects which present graphical components with extensions such as key bindings or tool-tips should implement this interface. Accessibility software can use the implementations of this interface to display the extended information of the component.

The AccessibleContext.getAccessibleComponent() method should return an instance of this interface only when it is supported.

Since: 1.2

See Also: Accessible AccessibleContext getAccessibleComponent

UNKNOWN: updated to 1.4

Method Summary
AccessibleKeyBindinggetAccessibleKeyBinding()
Returns the accessible key bindings for this component.
StringgetTitledBorderText()
Returns the title border text for this component.
StringgetToolTipText()
Returns the tool-tip text for this component.

Method Detail

getAccessibleKeyBinding

public AccessibleKeyBinding getAccessibleKeyBinding()
Returns the accessible key bindings for this component.

Returns: the key bindings, or null if not supported

getTitledBorderText

public String getTitledBorderText()
Returns the title border text for this component.

Returns: the titled border text, or null if not supported

getToolTipText

public String getToolTipText()
Returns the tool-tip text for this component.

Returns: the tool-tip, or null if not supported