Kaydet (Commit) a0d87361 authored tarafından Michael Stahl's avatar Michael Stahl

udkapi: fix doxygen warnings

Change-Id: I5f8c8df369aa7bb7f0647dbf4b25c39203d11b34
üst 8fbbb923
...@@ -36,6 +36,9 @@ published interface XImplementationRegistration: com::sun::star::uno::XInterface ...@@ -36,6 +36,9 @@ published interface XImplementationRegistration: com::sun::star::uno::XInterface
{ {
/** registers a component which provides one or more implementations. /** registers a component which provides one or more implementations.
@param aImplementationLoader
the URL of the implementation loader.
@param aLocation @param aLocation
specifies the location of the component with the URL. specifies the location of the component with the URL.
......
...@@ -33,6 +33,9 @@ interface XImplementationRegistration2: com::sun::star::registry::XImplementatio ...@@ -33,6 +33,9 @@ interface XImplementationRegistration2: com::sun::star::registry::XImplementatio
/** registers a component which provides one or more implementations. /** registers a component which provides one or more implementations.
@param aImplementationLoader
the URL of the implementation loader.
@param aLocation @param aLocation
specifies the location of the component with the URL. specifies the location of the component with the URL.
......
...@@ -49,11 +49,13 @@ published interface XDebugging: com::sun::star::uno::XInterface ...@@ -49,11 +49,13 @@ published interface XDebugging: com::sun::star::uno::XInterface
/** Evaluates an expression. /** 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 @param nCallStackPos Position in the call stack for which the expression
should be evaluated. 0 is the top/actual position in the call should be evaluated. 0 is the top/actual position in the call
in the call stack, 1 the next and so on. in the call stack, 1 the next and so on.
@returns the value of the expression as string.
*/ */
string eval( [in] string aSourceCode, string eval( [in] string aSourceCode,
[in] short nCallStackPos ); [in] short nCallStackPos );
......
...@@ -39,6 +39,7 @@ published interface XDirectInvocation: com::sun::star::uno::XInterface ...@@ -39,6 +39,7 @@ published interface XDirectInvocation: com::sun::star::uno::XInterface
{ {
/** provides access to methods and properties exposed by an object. /** 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 @param aParams all parameters, out parameters are not supported
*/ */
any directInvoke( [in] string aName, any directInvoke( [in] string aName,
......
...@@ -51,6 +51,7 @@ published interface XInvocation: com::sun::star::uno::XInterface ...@@ -51,6 +51,7 @@ published interface XInvocation: com::sun::star::uno::XInterface
/** provides access to methods exposed by an object. /** 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, @param aParams all parameters; pure out params are undefined in sequence,
the value has to be ignored by the callee the value has to be ignored by the callee
@param aOutParamIndex This sequence contains the indices of all parameters @param aOutParamIndex This sequence contains the indices of all parameters
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment