:: drafts :: com :: sun :: star :: accessibility :: bridge ::

interface XAccessibleNativeFrameMap
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XAccessibleNativeFrameMap
Description
Implement this interface when implementing a AccessBridge service.

This interface is used by the VCL toolkit to register it's native frame windows to the UNO<-> Java Access Bridge.


Methods' Summary
registerAccessibleNativeFrame Register the accessible object represening a native frame window under it's native window handle id.
revokeAccessibleNativeFrame Revoke the accessible object associated with the native window handle.
Methods' Details
registerAccessibleNativeFrame
[oneway] void
registerAccessibleNativeFrame(
 
[in] any
[in] ::drafts::com::sun::star::accessibility::XAccessible
 
nativeHandle,
accessible );

Description
Register the accessible object represening a native frame window under it's native window handle id.
Parameter nativeHandle
The native window handle which is a HWND on Windows and a long on X11.
Parameter accessible
The accessible object associated with the native frame window.
revokeAccessibleNativeFrame
[oneway] void
revokeAccessibleNativeFrame(
 
[in] any
 
nativeHandle );

Description
Revoke the accessible object associated with the native window handle.
Parameter nativeHandle
The native window handle the accessible to revoke was registered with.
Top of Page