:: com :: sun :: star :: accessibility ::

interface XAccessible
Developers Guide
Accessibility - Implementing Accessible Objects - Services

Methods' Summary
getAccessibleContext Returns the AccessibleContext associated with this object.  
Methods' Details
getAccessibleContext
XAccessibleContext
getAccessibleContext();

Description
Returns the AccessibleContext associated with this object.

The idea to let this interface only return an XAccessibleContext instead of directly supporting its functions is to allow the separation of the implementation of the functions that make a class accessible from the implementation of that class. You may, of course, implement XAccessible and XAccessibleContext in one class.

Returns
A reference to the object that contains the actual accessibility information.
See also
AccessibleContext
Top of Page