summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/script/XLibraryAccess.idl
diff options
context:
space:
mode:
authorMichael Hönnig <mi@openoffice.org>2002-10-03 11:44:33 +0000
committerMichael Hönnig <mi@openoffice.org>2002-10-03 11:44:33 +0000
commit625aff4ec7a47d618a9da160e962fc6fb5c834c5 (patch)
tree66c7f2771cf6d4b1657b7d4478c04c8eba23e52c /udkapi/com/sun/star/script/XLibraryAccess.idl
parent677ca9cfc0e9c94f6b86e9b1e180605f291b3630 (diff)
#94968# IDL reviews merged
Diffstat (limited to 'udkapi/com/sun/star/script/XLibraryAccess.idl')
-rw-r--r--udkapi/com/sun/star/script/XLibraryAccess.idl69
1 files changed, 7 insertions, 62 deletions
diff --git a/udkapi/com/sun/star/script/XLibraryAccess.idl b/udkapi/com/sun/star/script/XLibraryAccess.idl
index b59e06c7ff84..eae0c9aaeca1 100644
--- a/udkapi/com/sun/star/script/XLibraryAccess.idl
+++ b/udkapi/com/sun/star/script/XLibraryAccess.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XLibraryAccess.idl,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: mi $ $Date: 2001-11-16 15:09:06 $
+ * last change: $Author: mi $ $Date: 2002-10-03 12:44:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -71,24 +71,19 @@
module com { module sun { module star { module script {
//=============================================================================
-
-// DocMerge from xml: interface com::sun::star::script::XLibraryAccess
/** provides access to additional scripting code.
-
-
<p>This code is organized in modules and these modules contain
the functions. It is possible to get just the code from a function,
but you can also get the whole code of a module with all functions in it.</p>
+
+ @deprecated
*/
interface XLibraryAccess: com::sun::star::uno::XInterface
{
//-------------------------------------------------------------------------
-
- // DocMerge from idl: method com::sun::star::script::XLibraryAccess::isFunction
- /** @returns
- <TRUE/>, if the function is accessible through this library;
- otherwise it returns <FALSE/>.
+ /** returns <TRUE/>, if the function is accessible through this library;
+ otherwise it returns <FALSE/>.
@param aFunctionName
the fully qualified name of a funtion.
@@ -97,10 +92,7 @@ interface XLibraryAccess: com::sun::star::uno::XInterface
boolean isFunction( [in] string aFunctionName );
//-------------------------------------------------------------------------
-
- // DocMerge from idl: method com::sun::star::script::XLibraryAccess::isValidPath
- /** @returns
- <TRUE/> if a fully qualified function name begins with this name.
+ /** returns <TRUE/> if a fully qualified function name begins with this name.
@param aPathName
a part of a function name (e.g., "UtilLibrary").
@@ -108,26 +100,17 @@ interface XLibraryAccess: com::sun::star::uno::XInterface
boolean isValidPath( [in] string aPathName );
//-------------------------------------------------------------------------
- // DOCUMENTATION CHANGED FOR XLibraryAccess::getModuleNames
-
- // DocMerge from idl: method com::sun::star::script::XLibraryAccess::getModuleNames
/** Return all module names which contain code.
e.g., { "UtilLibrary.ModuleDate", "UtilLibrary.Output", ... }
*/
sequence<string> getModuleNames();
//-------------------------------------------------------------------------
- // DOCUMENTATION CHANGED FOR XLibraryAccess::getModuleSource
-
- // DocMerge from xml: method com::sun::star::script::XLibraryAccess::getModuleSource
/** get the source code of a module.
*/
string getModuleSource( [in] string aModulName );
//-------------------------------------------------------------------------
- // DOCUMENTATION CHANGED FOR XLibraryAccess::getModuleCode
-
- // DocMerge from idl: method com::sun::star::script::XLibraryAccess::getModuleCode
/** Get the hole compiled code of a module.
@param ModuleName the full qualified name of a module.
@@ -138,17 +121,11 @@ interface XLibraryAccess: com::sun::star::uno::XInterface
sequence<byte> getModuleCode( [in] string aModuleName );
//-------------------------------------------------------------------------
- // DOCUMENTATION CHANGED FOR XLibraryAccess::getFunctionSource
-
- // DocMerge from xml: method com::sun::star::script::XLibraryAccess::getFunctionSource
/** get the source code of a function.
*/
string getFunctionSource( [in] string aFunctionName );
//-------------------------------------------------------------------------
- // DOCUMENTATION CHANGED FOR XLibraryAccess::getFunctionCode
-
- // DocMerge from idl: method com::sun::star::script::XLibraryAccess::getFunctionCode
/** Get the compiled code of a function.
@param FunctionName the full qualified name of a function.
@@ -163,36 +140,4 @@ interface XLibraryAccess: com::sun::star::uno::XInterface
}; }; }; };
-/*=============================================================================
-
- $Log: not supported by cvs2svn $
- Revision 1.6 2001/03/16 15:10:40 jsc
- remove interfaceheader with uik and remove [const] in method definitions
-
- Revision 1.5 2000/12/19 13:49:38 mi
- syntax errors in documentation fixed
-
- Revision 1.4 2000/11/08 12:28:52 mi
- moved from api
-
- Revision 1.1.1.1 2000/09/18 23:35:36 hjs
- initial import
-
- Revision 1.6 2000/09/11 11:52:39 mi
- documentation merged from XML
-
- Revision 1.4 2000/04/20 14:14:36 mm
- #74031# better documentation
-
- Revision 1.3 2000/02/23 11:41:17 mi
- results from proofreading in layouted version
-
- Revision 1.2 2000/02/07 11:24:51 mi
- zu #70728# missing documentation marked
-
- Revision 1.1.1.1 1999/11/11 09:48:45 jsc
- new
-
-
-=============================================================================*/
#endif