summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/reflection/XArrayTypeDescription.idl
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2002-03-08 16:19:13 +0000
committerDaniel Boelzle <dbo@openoffice.org>2002-03-08 16:19:13 +0000
commite12c6f8e77c898a6bc9d320469ab00cbf26d12b5 (patch)
treed71e41dfccc2901f2716edd8c2b3624ee0d7027c /udkapi/com/sun/star/reflection/XArrayTypeDescription.idl
parent027c4df7a750d9a47b022a2edcd86d6727efde71 (diff)
#96711# reviewed reflection API documentation
Diffstat (limited to 'udkapi/com/sun/star/reflection/XArrayTypeDescription.idl')
-rw-r--r--udkapi/com/sun/star/reflection/XArrayTypeDescription.idl44
1 files changed, 26 insertions, 18 deletions
diff --git a/udkapi/com/sun/star/reflection/XArrayTypeDescription.idl b/udkapi/com/sun/star/reflection/XArrayTypeDescription.idl
index f0f4dec9b2b3..faecbda4c4a9 100644
--- a/udkapi/com/sun/star/reflection/XArrayTypeDescription.idl
+++ b/udkapi/com/sun/star/reflection/XArrayTypeDescription.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XArrayTypeDescription.idl,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: jsc $ $Date: 2001-03-30 13:51:23 $
+ * last change: $Author: dbo $ $Date: 2002-03-08 17:19:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -72,29 +72,34 @@
//=============================================================================
-// DocMerge from xml: interface com::sun::star::reflection::XArrayTypeDescription
-/** The type description of an array.
+/** Deprecated. Arrays are not supported.
+ Reflects a fixed-size array type.
The type class of this description is TypeClass_ARRAY.
- */
+
+ @deprecated
+*/
interface XArrayTypeDescription: com::sun::star::reflection::XTypeDescription
{
- //-------------------------------------------------------------------------
+ /** Returns the element type of the array.
- // DocMerge from idl: method com::sun::star::reflection::XServiceTypeDescription::getReferencedType
- /** @return the typedefed type, if the type is a typedef,
- or the base type, if the type is a array or sequence.
- */
+ @return
+ element type of the array
+ */
com::sun::star::reflection::XTypeDescription getType();
- // DocMerge from idl: method com::sun::star::reflection::XServiceTypeDescription::getNumberOfDimensions
- /** @return the number of dimensions.
- */
- long getNumberOfDimensions();
+ /** Returns the number of dimensions of the array.
+
+ @return
+ dimension of the array
+ */
+ long getNumberOfDimensions();
- // DocMerge from idl: method com::sun::star::reflection::XServiceTypeDescription::getDimensions
- /** @return a sequence with the array dimensions.
- */
- sequence< long > getDimensions();
+ /** Returns dimensions of array (same length as getNumberOfDimensions()).
+
+ @return
+ dimensions of array
+ */
+ sequence< long > getDimensions();
};
//=============================================================================
@@ -104,6 +109,9 @@ interface XArrayTypeDescription: com::sun::star::reflection::XTypeDescription
/*=============================================================================
$Log: not supported by cvs2svn $
+ Revision 1.1 2001/03/30 13:51:23 jsc
+ new
+
=============================================================================*/
#endif