summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/accessibility/XAccessible.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/accessibility/XAccessible.idl')
-rw-r--r--offapi/com/sun/star/accessibility/XAccessible.idl22
1 files changed, 11 insertions, 11 deletions
diff --git a/offapi/com/sun/star/accessibility/XAccessible.idl b/offapi/com/sun/star/accessibility/XAccessible.idl
index d195da413c8a..afd9928bf172 100644
--- a/offapi/com/sun/star/accessibility/XAccessible.idl
+++ b/offapi/com/sun/star/accessibility/XAccessible.idl
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -28,9 +28,9 @@
#ifndef __com_sun_star_accessibility_XAccessible_idl__
#define __com_sun_star_accessibility_XAccessible_idl__
-#ifndef __com_sun_star_uno_XInterface_idl__
-#include <com/sun/star/uno/XInterface.idl>
-#endif
+#ifndef __com_sun_star_uno_XInterface_idl__
+#include <com/sun/star/uno/XInterface.idl>
+#endif
module com { module sun { module star { module accessibility {
@@ -38,11 +38,11 @@ module com { module sun { module star { module accessibility {
/** This interface has to be implemented by any class that wants to be
accessible.
-
+
<p>It is used to provide access to the <type>XAccessibleContext</type>
interface but allows at the same time that that interface is implemented
by another class.</p>
-
+
<p>The distinction between the interfaces <type>XAccessible</type> and
<type>XAccessibleContext</type> makes it possible to split up the
implementation of the
@@ -63,24 +63,24 @@ module com { module sun { module star { module accessibility {
*/
published interface XAccessible : ::com::sun::star::uno::XInterface
{
- /** Returns the AccessibleContext associated with this object.
-
+ /** Returns the AccessibleContext associated with this object.
+
<p>The idea to let this interface only return an
<type>XAccessibleContext</type> 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 <type>XAccessible</type>
and <type>XAccessibleContext</type> in one class.</p>
-
+
@return
A reference to the object that contains the actual accessibility
information.
-
+
@see AccessibleContext
*/
XAccessibleContext getAccessibleContext ();
};
-
+
}; }; }; };
#endif