summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/accessibility/XAccessibleValue.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/accessibility/XAccessibleValue.idl')
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleValue.idl24
1 files changed, 12 insertions, 12 deletions
diff --git a/offapi/com/sun/star/accessibility/XAccessibleValue.idl b/offapi/com/sun/star/accessibility/XAccessibleValue.idl
index b5d8cb8482ff..b7bedfa3309f 100644
--- a/offapi/com/sun/star/accessibility/XAccessibleValue.idl
+++ b/offapi/com/sun/star/accessibility/XAccessibleValue.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
@@ -46,40 +46,40 @@ module com { module sun { module star { module accessibility {
published interface XAccessibleValue : ::com::sun::star::uno::XInterface
{
/** Returns the value of this object as a number.
-
+
<p>The exact return type is implementation dependent. Typical types
are long and double.</p>
-
+
@return
Returns the current value represented by this object.
*/
any getCurrentValue ();
/** Sets the value of this object to the given number.
-
+
<p>The argument is clipped to the valid interval whose upper and
lower bounds are returned by the methods
<member>getMaximumAccessibleValue</member> and
<member>getMinimumAccessibleValue</member>, 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.</p>
-
+
@param aNumber
The new value represented by this object. The set of admissible
types for this argument is implementation dependent.
-
+
@return
Returns <TRUE/> if the new value could successfully be set and
<FALSE/> otherwise.
*/
boolean setCurrentValue ([in] any aNumber);
-
+
/** Returns the maximal value that can be represented by this object.
-
+
<p>The type of the returned value is implementation dependent. It
does not have to be the same type as that returned by
<member>getCurrentAccessibleValue</member>.</p>
-
+
@return
Returns the maximal value in an implementation dependent type.
If this object has no upper bound then an empty object is
@@ -88,11 +88,11 @@ published interface XAccessibleValue : ::com::sun::star::uno::XInterface
any getMaximumValue ();
/** Returns the minimal value that can be represented by this object.
-
+
<p>The type of the returned value is implementation dependent. It
does not have to be the same type as that returned by
<member>getCurrentAccessibleValue</member>.</p>
-
+
@return
Returns the minimal value in an implementation dependent type.
If this object has no upper bound then an empty object is
@@ -100,7 +100,7 @@ published interface XAccessibleValue : ::com::sun::star::uno::XInterface
*/
any getMinimumValue ();
};
-
+
}; }; }; };
#endif