summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/script/XLibraryAccess.idl
diff options
context:
space:
mode:
authorJean-Tiare LE BIGOT <admin@jtlebi.fr>2012-08-11 13:22:07 -0400
committerDavid Tardon <dtardon@redhat.com>2012-08-12 19:29:16 +0200
commitfc2998738538a8e8abc4b8ab5b84a12aa7365dd0 (patch)
tree8026ad5e9a05948f882f790675c0813c72cd42bf /udkapi/com/sun/star/script/XLibraryAccess.idl
parent602f956d3231a093c9853d88fe5d5de2465f7112 (diff)
Remove comment art from offapi and udkapi
I used this "one-liner" to detect comment lines containing only spaces and '=' or '-' $ find . -name "*.*" -exec sed -i '/^\s*\/\/\s*[-=]*\s*$/d' {} \; Change-Id: Iac589765c8c2e7c3ad9c487d57e48b4fd4439f07
Diffstat (limited to 'udkapi/com/sun/star/script/XLibraryAccess.idl')
-rw-r--r--udkapi/com/sun/star/script/XLibraryAccess.idl10
1 files changed, 0 insertions, 10 deletions
diff --git a/udkapi/com/sun/star/script/XLibraryAccess.idl b/udkapi/com/sun/star/script/XLibraryAccess.idl
index 698e35ada9a1..c40b4960eb1b 100644
--- a/udkapi/com/sun/star/script/XLibraryAccess.idl
+++ b/udkapi/com/sun/star/script/XLibraryAccess.idl
@@ -22,11 +22,9 @@
#include <com/sun/star/uno/XInterface.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** provides access to additional scripting code.
<p>This code is organized in modules and these modules contain
@@ -36,7 +34,6 @@
*/
published interface XLibraryAccess: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** returns <TRUE/>, if the function is accessible through this library;
otherwise it returns <FALSE/>.
@@ -46,7 +43,6 @@ published interface XLibraryAccess: com::sun::star::uno::XInterface
*/
boolean isFunction( [in] string aFunctionName );
- //-------------------------------------------------------------------------
/** returns <TRUE/> if a fully qualified function name begins with this name.
@param aPathName
@@ -54,18 +50,15 @@ published interface XLibraryAccess: com::sun::star::uno::XInterface
*/
boolean isValidPath( [in] string aPathName );
- //-------------------------------------------------------------------------
/** Return all module names which contain code.
e.g., { "UtilLibrary.ModuleDate", "UtilLibrary.Output", ... }
*/
sequence<string> getModuleNames();
- //-------------------------------------------------------------------------
/** get the source code of a module.
*/
string getModuleSource( [in] string aModulName );
- //-------------------------------------------------------------------------
/** Get the hole compiled code of a module.
@param ModuleName the full qualified name of a module.
@@ -75,12 +68,10 @@ published interface XLibraryAccess: com::sun::star::uno::XInterface
*/
sequence<byte> getModuleCode( [in] string aModuleName );
- //-------------------------------------------------------------------------
/** get the source code of a function.
*/
string getFunctionSource( [in] string aFunctionName );
- //-------------------------------------------------------------------------
/** Get the compiled code of a function.
@param FunctionName the full qualified name of a function.
@@ -91,7 +82,6 @@ published interface XLibraryAccess: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };