From a0d873615c5c11a8154da213171b50c50c081305 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Tue, 9 Feb 2016 16:09:10 +0100 Subject: udkapi: fix doxygen warnings Change-Id: I5f8c8df369aa7bb7f0647dbf4b25c39203d11b34 --- udkapi/com/sun/star/registry/XImplementationRegistration.idl | 3 +++ udkapi/com/sun/star/registry/XImplementationRegistration2.idl | 3 +++ udkapi/com/sun/star/script/XDebugging.idl | 4 +++- udkapi/com/sun/star/script/XDirectInvocation.idl | 1 + udkapi/com/sun/star/script/XInvocation.idl | 1 + 5 files changed, 11 insertions(+), 1 deletion(-) (limited to 'udkapi/com') diff --git a/udkapi/com/sun/star/registry/XImplementationRegistration.idl b/udkapi/com/sun/star/registry/XImplementationRegistration.idl index 13d031771b85..40da303f5339 100644 --- a/udkapi/com/sun/star/registry/XImplementationRegistration.idl +++ b/udkapi/com/sun/star/registry/XImplementationRegistration.idl @@ -36,6 +36,9 @@ published interface XImplementationRegistration: com::sun::star::uno::XInterface { /** registers a component which provides one or more implementations. + @param aImplementationLoader + the URL of the implementation loader. + @param aLocation specifies the location of the component with the URL. diff --git a/udkapi/com/sun/star/registry/XImplementationRegistration2.idl b/udkapi/com/sun/star/registry/XImplementationRegistration2.idl index 15811615d97c..3b6a969e8447 100644 --- a/udkapi/com/sun/star/registry/XImplementationRegistration2.idl +++ b/udkapi/com/sun/star/registry/XImplementationRegistration2.idl @@ -33,6 +33,9 @@ interface XImplementationRegistration2: com::sun::star::registry::XImplementatio /** registers a component which provides one or more implementations. + @param aImplementationLoader + the URL of the implementation loader. + @param aLocation specifies the location of the component with the URL. diff --git a/udkapi/com/sun/star/script/XDebugging.idl b/udkapi/com/sun/star/script/XDebugging.idl index 64cc747d4b60..ace72cc29a75 100644 --- a/udkapi/com/sun/star/script/XDebugging.idl +++ b/udkapi/com/sun/star/script/XDebugging.idl @@ -49,11 +49,13 @@ published interface XDebugging: com::sun::star::uno::XInterface /** Evaluates an expression. - @returns the value of the expression as string. + @param aSourceCode the expression to be evaluated. @param nCallStackPos Position in the call stack for which the expression should be evaluated. 0 is the top/actual position in the call in the call stack, 1 the next and so on. + + @returns the value of the expression as string. */ string eval( [in] string aSourceCode, [in] short nCallStackPos ); diff --git a/udkapi/com/sun/star/script/XDirectInvocation.idl b/udkapi/com/sun/star/script/XDirectInvocation.idl index 801ad43e95c4..ff21fb17ac91 100644 --- a/udkapi/com/sun/star/script/XDirectInvocation.idl +++ b/udkapi/com/sun/star/script/XDirectInvocation.idl @@ -39,6 +39,7 @@ published interface XDirectInvocation: com::sun::star::uno::XInterface { /** provides access to methods and properties exposed by an object. + @param aName the method to invoke @param aParams all parameters, out parameters are not supported */ any directInvoke( [in] string aName, diff --git a/udkapi/com/sun/star/script/XInvocation.idl b/udkapi/com/sun/star/script/XInvocation.idl index 7545fdb415d6..0db1a9abf1e5 100644 --- a/udkapi/com/sun/star/script/XInvocation.idl +++ b/udkapi/com/sun/star/script/XInvocation.idl @@ -51,6 +51,7 @@ published interface XInvocation: com::sun::star::uno::XInterface /** provides access to methods exposed by an object. + @param aFunctionName the method to invoke @param aParams all parameters; pure out params are undefined in sequence, the value has to be ignored by the callee @param aOutParamIndex This sequence contains the indices of all parameters -- cgit