javax.accessibility
Interface AccessibleExtendedComponent
java.lang.Object
|
+--javax.accessibility.AccessibleComponent
|
+--javax.accessibility.AccessibleExtendedComponent
All Implemented Interfaces:
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:Author:- Eric Blake <ebb9@email.byu.edu>
See Also:
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
The
AccessibleContext.getAccessibleComponent()
method should return an instance of this interface only when it is supported.