Return-Path: X-Original-To: apmail-incubator-ooo-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-ooo-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E19437457 for ; Mon, 28 Nov 2011 00:47:52 +0000 (UTC) Received: (qmail 64395 invoked by uid 500); 28 Nov 2011 00:47:52 -0000 Delivered-To: apmail-incubator-ooo-commits-archive@incubator.apache.org Received: (qmail 64362 invoked by uid 500); 28 Nov 2011 00:47:52 -0000 Mailing-List: contact ooo-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ooo-dev@incubator.apache.org Delivered-To: mailing list ooo-commits@incubator.apache.org Received: (qmail 64232 invoked by uid 99); 28 Nov 2011 00:47:52 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Nov 2011 00:47:52 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Nov 2011 00:47:30 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 58B3F2388BEC for ; Mon, 28 Nov 2011 00:46:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r799368 [12/42] - in /websites/staging/ooo-site/trunk/content/ui/accessibility: ./ apiref/ apiref/com/ apiref/com/sun/ apiref/com/sun/star/ apiref/com/sun/star/awt/ apiref/com/sun/star/beans/ apiref/com/sun/star/lang/ apiref/com/sun/star/un... Date: Mon, 28 Nov 2011 00:46:10 -0000 To: ooo-commits@incubator.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111128004643.58B3F2388BEC@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/XAccessibleValue-xref.html ============================================================================== --- websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/XAccessibleValue-xref.html (added) +++ websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/XAccessibleValue-xref.html Mon Nov 28 00:45:46 2011 @@ -0,0 +1,135 @@ + + + + + + +Uses of Interface XAccessibleValue-xref + + + + + + + + + +
+ + + +
+
+


Powered by the Apache CMS.

+
+
+

+ Apache "OpenOffice.org" is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. + Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and + decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is + not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has + yet to be fully endorsed by the ASF.

+

+ Contact Us | + Terms of Use +
Apache and the Apache feather logos are trademarks of The Apache Software Foundation. +
OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. +
Other names appearing on the site may be trademarks of their respective owners. +

+
+
+ + + Added: websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/XAccessibleValue.html ============================================================================== --- websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/XAccessibleValue.html (added) +++ websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/XAccessibleValue.html Mon Nov 28 00:45:46 2011 @@ -0,0 +1,317 @@ + + + + + + +Interface XAccessibleValue + + + + + + + + + +
+ +
+ + + + + + + + + + + + +
+ + + + + + + +
+
+ + + + + + + + + + + + + +

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

+
interface XAccessibleValue
+
Base Hierarchy
+
::com::sun::star::uno::XInterface
+ |
+ +-XAccessibleValue
+
+
+
Description
+
Implement this interface to give access to a single numerical value. + +
+

The XAccessibleValue interface represents a single + numerical value and should be implemented by any class that supports + numerical value like scroll bars and spin boxes. This interface lets + you access the value and its upper and lower bounds.

+
+
+
+
+ + + + + + + + + + + + + + + + + + + + +
Methods' Summary
getCurrentValue Returns the value of this object as a number. + +
setCurrentValue Sets the value of this object to the given number. + +
getMaximumValue Returns the maximal value that can be represented by this object. + +
getMinimumValue Returns the minimal value that can be represented by this object. + +
+
+ + + + + + + + + + + + + + + +
Methods' Details
getCurrentValue + + + + +
+ + + + + +
any
+getCurrentValue();
 
+
 
+
+
+
+
Description
+
Returns the value of this object as a number. + +
+

The exact return type is implementation dependent. Typical types + are long and double.

+ +
+
Returns
+
+ Returns the current value represented by this object. +
+
+
+
setCurrentValue + + + + +
+ + + + + +
boolean
+setCurrentValue(
 
+[in] any
 
+aNumber );
+
+
+
Description
+
Sets the value of this object to the given number. + +
+

The argument is clipped to the valid interval whose upper and + lower bounds are returned by the methods + getMaximumAccessibleValue and + getMinimumAccessibleValue , i.e. if it is lower than + the minimum value the new value will be the minimum and if it is + greater than the maximum then the new value will be the maximum.

+ +
+
Parameter aNumber
+
+ The new value represented by this object. The set of admissible + types for this argument is implementation dependent. + +
+
Returns
+
+ Returns true if the new value could successfully be set and + false otherwise. +
+
+
+
getMaximumValue + + + + +
+ + + + + +
any
+getMaximumValue();
 
+
 
+
+
+
+
Description
+
Returns the maximal value that can be represented by this object. + +
+

The type of the returned value is implementation dependent. It + does not have to be the same type as that returned by + getCurrentAccessibleValue .

+ +
+
Returns
+
+ Returns the maximal value in an implementation dependent type. + If this object has no upper bound then an empty object is + returned. +
+
+
+
getMinimumValue + + + + +
+ + + + + +
any
+getMinimumValue();
 
+
 
+
+
+
+
Description
+
Returns the minimal value that can be represented by this object. + +
+

The type of the returned value is implementation dependent. It + does not have to be the same type as that returned by + getCurrentAccessibleValue .

+ +
+
Returns
+
+ Returns the minimal value in an implementation dependent type. + If this object has no upper bound then an empty object is + returned. +
+
+
+
+
Top of Page
+ + +
+ +
+
+


Powered by the Apache CMS.

+
+
+

+ Apache "OpenOffice.org" is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. + Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and + decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is + not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has + yet to be fully endorsed by the ASF.

+

+ Contact Us | + Terms of Use +
Apache and the Apache feather logos are trademarks of The Apache Software Foundation. +
OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. +
Other names appearing on the site may be trademarks of their respective owners. +

+
+
+ + + Added: websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/AccessBridge-xref.html ============================================================================== --- websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/AccessBridge-xref.html (added) +++ websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/AccessBridge-xref.html Mon Nov 28 00:45:46 2011 @@ -0,0 +1,108 @@ + + + + + + +Uses of Service AccessBridge-xref + + + + + + + + + +
+ +
+ + + + + + + + + + + + +
+
+ + + + + + + +
uses of service AccessBridge

back to service AccessBridge
+
+ +Services which Include this Service
+ +Singletons which Instantiate this Service
+ +References in Developers Guide
+ +

+
+
+Top of Page
+ + +
+ +
+
+


Powered by the Apache CMS.

+
+
+

+ Apache "OpenOffice.org" is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. + Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and + decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is + not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has + yet to be fully endorsed by the ASF.

+

+ Contact Us | + Terms of Use +
Apache and the Apache feather logos are trademarks of The Apache Software Foundation. +
OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. +
Other names appearing on the site may be trademarks of their respective owners. +

+
+
+ + + Added: websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/AccessBridge.html ============================================================================== --- websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/AccessBridge.html (added) +++ websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/AccessBridge.html Mon Nov 28 00:45:46 2011 @@ -0,0 +1,121 @@ + + + + + + +Service AccessBridge + + + + + + + + + +
+ +
+ + + + + + + + + + + + +
+ + + + + + + +
+
+ + + + + + + + + +

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

+
service AccessBridge
+
+ + + + + + + + +
Exported Interfaces
XAccessibleNativeFrameMap
+ Implement this interface when implementing a AccessBridge service. + +
+
 
Top of Page
+ + +
+ +
+
+


Powered by the Apache CMS.

+
+
+

+ Apache "OpenOffice.org" is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. + Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and + decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is + not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has + yet to be fully endorsed by the ASF.

+

+ Contact Us | + Terms of Use +
Apache and the Apache feather logos are trademarks of The Apache Software Foundation. +
OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. +
Other names appearing on the site may be trademarks of their respective owners. +

+
+
+ + + Added: websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/XAccessibleNativeFrameMap-xref.html ============================================================================== --- websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/XAccessibleNativeFrameMap-xref.html (added) +++ websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/XAccessibleNativeFrameMap-xref.html Mon Nov 28 00:45:46 2011 @@ -0,0 +1,126 @@ + + + + + + +Uses of Interface XAccessibleNativeFrameMap-xref + + + + + + + + + +
+ +
+ + + + + + + + + + + + +
+
+ + + + + + + +
uses of interface XAccessibleNativeFrameMap

back to interface XAccessibleNativeFrameMap
+
+ +Derived Interfaces
+ +Synonym Typedefs
+ +Services which Support this Interface
+ +
Uses as Return Type
+ +Uses as Parameter
+ +Uses as Data Type
+ +References in Developers Guide
+ +

+
+
+ + + + + + + +
Services which Support this Interface
AccessBridge
+
+
+
Top of Page
+ + +
+ +
+
+


Powered by the Apache CMS.

+
+
+

+ Apache "OpenOffice.org" is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. + Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and + decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is + not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has + yet to be fully endorsed by the ASF.

+

+ Contact Us | + Terms of Use +
Apache and the Apache feather logos are trademarks of The Apache Software Foundation. +
OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. +
Other names appearing on the site may be trademarks of their respective owners. +

+
+
+ + + Added: websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/XAccessibleNativeFrameMap.html ============================================================================== --- websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/XAccessibleNativeFrameMap.html (added) +++ websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/XAccessibleNativeFrameMap.html Mon Nov 28 00:45:46 2011 @@ -0,0 +1,219 @@ + + + + + + +Interface XAccessibleNativeFrameMap + + + + + + + + + +
+ +
+ + + + + + + + + + + + +
+ + + + + + + +
+
+ + + + + + + + + + + + + +

:: 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
+ + +
+ +
+
+


Powered by the Apache CMS.

+
+
+

+ Apache "OpenOffice.org" is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. + Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and + decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is + not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has + yet to be fully endorsed by the ASF.

+

+ Contact Us | + Terms of Use +
Apache and the Apache feather logos are trademarks of The Apache Software Foundation. +
OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. +
Other names appearing on the site may be trademarks of their respective owners. +

+
+
+ + + Added: websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/XAccessibleTopWindowMap-xref.html ============================================================================== --- websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/XAccessibleTopWindowMap-xref.html (added) +++ websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/XAccessibleTopWindowMap-xref.html Mon Nov 28 00:45:46 2011 @@ -0,0 +1,116 @@ + + + + + + +Uses of Interface XAccessibleTopWindowMap-xref + + + + + + + + + +
+ +
+ + + + + + + + + + + + +
+
+ + + + + + + +
uses of interface XAccessibleTopWindowMap

back to interface XAccessibleTopWindowMap
+
+ +Derived Interfaces
+ +Synonym Typedefs
+ +Services which Support this Interface
+ +Uses as Return Type
+ +Uses as Parameter
+ +Uses as Data Type
+ +References in Developers Guide
+ +

+
+
+Top of Page
+ + +
+ +
+
+


Powered by the Apache CMS.

+
+
+

+ Apache "OpenOffice.org" is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. + Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and + decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is + not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has + yet to be fully endorsed by the ASF.

+

+ Contact Us | + Terms of Use +
Apache and the Apache feather logos are trademarks of The Apache Software Foundation. +
OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. +
Other names appearing on the site may be trademarks of their respective owners. +

+
+
+ + + Added: websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/XAccessibleTopWindowMap.html ============================================================================== --- websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/XAccessibleTopWindowMap.html (added) +++ websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/XAccessibleTopWindowMap.html Mon Nov 28 00:45:46 2011 @@ -0,0 +1,226 @@ + + + + + + +Interface XAccessibleTopWindowMap + + + + + + + + + +
+ +
+ + + + + + + + + + + + +
+ + + + + + + +
+
+ + + + + + + + + + + + + +

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

+
interface XAccessibleTopWindowMap
+
Base Hierarchy
+
::com::sun::star::uno::XInterface
+ |
+ +-XAccessibleTopWindowMap
+
+
+
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
+[in] ::com::sun::star::awt::XTopWindow
 
+nativeHandle,
+accessible,
+topWindow );
+
+
+
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. + +
+
Parameter topWindow
+
+ The XTopWindow interface representing 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
+ + +
+ +
+
+


Powered by the Apache CMS.

+
+
+

+ Apache "OpenOffice.org" is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. + Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and + decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is + not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has + yet to be fully endorsed by the ASF.

+

+ Contact Us | + Terms of Use +
Apache and the Apache feather logos are trademarks of The Apache Software Foundation. +
OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. +
Other names appearing on the site may be trademarks of their respective owners. +

+
+
+ + + Added: websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/module-ix.html ============================================================================== --- websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/module-ix.html (added) +++ websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/bridge/module-ix.html Mon Nov 28 00:45:46 2011 @@ -0,0 +1,139 @@ + + + + + + +Module bridge + + + + + + + + + +
+ + + +
+
+


Powered by the Apache CMS.

+
+
+

+ Apache "OpenOffice.org" is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. + Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and + decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is + not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has + yet to be fully endorsed by the ASF.

+

+ Contact Us | + Terms of Use +
Apache and the Apache feather logos are trademarks of The Apache Software Foundation. +
OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. +
Other names appearing on the site may be trademarks of their respective owners. +

+
+
+ + + Added: websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/module-ix.html ============================================================================== --- websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/module-ix.html (added) +++ websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/accessibility/module-ix.html Mon Nov 28 00:45:46 2011 @@ -0,0 +1,408 @@ + + + + + + +Module accessibility + + + + + + + + + +
+ +
+ + + + + + + + + + + + +
+ + + + + + + + + + + + +
+
+ + + + + + + + + +

:: drafts :: com :: sun :: star ::

+
module accessibility
+
+ + + + + + + +
Nested Modules
bridge
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Services
Accessible Every class has to support this service in order to be accessible. + +
AccessibleAction This service provides access to all the actions that an accessible + object supports. + +
AccessibleContext Central service of the Accessibility API that gives access to various + facets of an object's content. + +
AccessibleEditableText Support this service to give read and write access to text. + +
AccessibleHyperlink Support this service to represent a group of hyperlinks. + +
AccessibleHypertext Support this service to allow access to a hypertext document. + +
AccessibleTable All two-dimensional tables should support this service. + +
AccessibleText Every class that represents text should support this service. + +
AccessibleValue Support this service to represent single numerical values. + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Interfaces
XAccessible This interface has to be implemented by any class that wants to be + accessible. + +
XAccessibleAction Implement this interface to give access to actions that can be executed + for accessible objects. + +
XAccessibleComponent The XAccessibleComponent interface should be supported by + any class that can be rendered on the screen. + +
XAccessibleContext Implement this interface for exposing various aspects of a class' + content. + +
XAccessibleEditableText Implement this interface to give read and write access to a text + representation. + +
XAccessibleEventBroadcaster makes it possible to register listeners which are called whenever + an accessibility event (see AccessibleEventObject ) occurs. + +
XAccessibleEventListener makes it possible to register a component as a listener, which is called whenever + an accessibility event occurs. + +
XAccessibleExtendedComponent The ::AccessibleExtendedComponent interface contains + additional methods to those of the ::AccessibleComponent + interface. These methods provide more seldom used information. The + division into two interfaces allows classes to support the more + frequently used methods of the ::AccessibleComponent + interface and only support the ::AccessibleExtendedComponent + interface if that makes sense for the class. + +
XAccessibleHyperlink Implement this interface to represent a hyperlink or a group of + hyperlinks. + +
XAccessibleHypertext Implement this interface to expose the hypertext structure of a document. + +
XAccessibleImage Implement this interface to represent images and icons. + +
XAccessibleKeyBinding This interface can be used to represent any number of key bindings which + then can be associated to a certain action. + +
XAccessibleRelationSet Implement this interface to give access to an object's set of relations. + +
XAccessibleSelection Implement this interface to represent a selection of accessible objects. + +
XAccessibleStateSet Implement this interface to represent a set of states. + +
XAccessibleTable Implement this interface to give access to a two-dimensional table. + +
XAccessibleText Implement this interface to give read-only access to a text. + +
XAccessibleValue Implement this interface to give access to a single numerical value. + +
+
+ + + + + + + + + + + + + + + +
Structs
AccessibleEventObject this struct describes an accessible event, that is broadcasted from + the XAccessibleEventBroadcaster and notified to + XAccessibleEventListener . + + It is usualy implemented by AccessibleContext . +
AccessibleRelation An AccessibleRelation object defines a one-to-many + relation. + +
AccessibleTableModelChange This structure lets an event give access to a change of a table model. + +
+
+ + + + + + + + + + + +
Exceptions
IllegalAccessibleComponentStateException Indicates invalid or unavailable state information. + +
IllegalComponentStateException Indicates invalid or unavailable state information. + +
+
+ + + + + + + +
Enums
AccessiblePropertyId[ DEPRECATED ]
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Constant Groups
AccessibleEventId These constants identify the type of AccessibleEventObject + objects. + +
AccessibleRelationType Collection of relation types. + +
AccessibleRole Collection of roles. + +
AccessibleStateType Collection of state types. + +
AccessibleTableModelChangeType Type of a change made to a table model. + + @descr +
AccessibleTextType Collection of types of text portions. + +
+
Top of Page
+ + +
+ +
+
+


Powered by the Apache CMS.

+
+
+

+ Apache "OpenOffice.org" is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. + Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and + decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is + not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has + yet to be fully endorsed by the ASF.

+

+ Contact Us | + Terms of Use +
Apache and the Apache feather logos are trademarks of The Apache Software Foundation. +
OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. +
Other names appearing on the site may be trademarks of their respective owners. +

+
+
+ + + Added: websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/auth/AuthenticationFailedException-xref.html ============================================================================== --- websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/auth/AuthenticationFailedException-xref.html (added) +++ websites/staging/ooo-site/trunk/content/ui/accessibility/apiref/drafts/com/sun/star/auth/AuthenticationFailedException-xref.html Mon Nov 28 00:45:46 2011 @@ -0,0 +1,119 @@ + + + + + + +Uses of Exception AuthenticationFailedException-xref + + + + + + + + + +
+ +
+ + + + + + + + + + + + +
+
+ + + + + + + +
uses of exception AuthenticationFailedException

back to exception AuthenticationFailedException
+
+ +Derived Exceptions
+ +Raising Functions
+ +
References in Developers Guide
+ +

+
+
+ + + + + + + +
Raising Functions
XSSOAcceptorContext::accept()
+XSSOInitiatorContext::init()
+
+
+
Top of Page
+ + +
+ +
+
+


Powered by the Apache CMS.

+
+
+

+ Apache "OpenOffice.org" is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. + Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and + decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is + not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has + yet to be fully endorsed by the ASF.

+

+ Contact Us | + Terms of Use +
Apache and the Apache feather logos are trademarks of The Apache Software Foundation. +
OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. +
Other names appearing on the site may be trademarks of their respective owners. +

+
+
+ + +