summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/script
diff options
context:
space:
mode:
Diffstat (limited to 'udkapi/com/sun/star/script')
-rw-r--r--udkapi/com/sun/star/script/AllEventObject.idl7
-rw-r--r--udkapi/com/sun/star/script/AllListenerAdapter.idl3
-rw-r--r--udkapi/com/sun/star/script/ArrayWrapper.idl3
-rw-r--r--udkapi/com/sun/star/script/BasicErrorException.idl5
-rw-r--r--udkapi/com/sun/star/script/CannotConvertException.idl3
-rw-r--r--udkapi/com/sun/star/script/CannotCreateAdapterException.idl3
-rw-r--r--udkapi/com/sun/star/script/ContextInformation.idl9
-rw-r--r--udkapi/com/sun/star/script/Converter.idl3
-rw-r--r--udkapi/com/sun/star/script/Engine.idl3
-rw-r--r--udkapi/com/sun/star/script/FailReason.idl3
-rw-r--r--udkapi/com/sun/star/script/FinishEngineEvent.idl6
-rw-r--r--udkapi/com/sun/star/script/FinishReason.idl6
-rw-r--r--udkapi/com/sun/star/script/InterruptEngineEvent.idl11
-rw-r--r--udkapi/com/sun/star/script/InterruptReason.idl11
-rw-r--r--udkapi/com/sun/star/script/Invocation.idl3
-rw-r--r--udkapi/com/sun/star/script/InvocationAdapterFactory.idl3
-rw-r--r--udkapi/com/sun/star/script/InvocationInfo.idl3
-rw-r--r--udkapi/com/sun/star/script/JavaScript.idl3
-rw-r--r--udkapi/com/sun/star/script/MemberType.idl3
-rw-r--r--udkapi/com/sun/star/script/ScriptEvent.idl5
-rw-r--r--udkapi/com/sun/star/script/ScriptEventDescriptor.idl7
-rw-r--r--udkapi/com/sun/star/script/XAllListener.idl5
-rw-r--r--udkapi/com/sun/star/script/XAllListenerAdapterService.idl4
-rw-r--r--udkapi/com/sun/star/script/XDebugging.idl16
-rw-r--r--udkapi/com/sun/star/script/XDefaultMethod.idl2
-rw-r--r--udkapi/com/sun/star/script/XDefaultProperty.idl2
-rw-r--r--udkapi/com/sun/star/script/XDirectInvocation.idl5
-rw-r--r--udkapi/com/sun/star/script/XEngine.idl12
-rw-r--r--udkapi/com/sun/star/script/XEngineListener.idl6
-rw-r--r--udkapi/com/sun/star/script/XEventAttacher.idl6
-rw-r--r--udkapi/com/sun/star/script/XEventAttacherManager.idl14
-rw-r--r--udkapi/com/sun/star/script/XInvocation.idl9
-rw-r--r--udkapi/com/sun/star/script/XInvocation2.idl3
-rw-r--r--udkapi/com/sun/star/script/XInvocationAdapterFactory.idl4
-rw-r--r--udkapi/com/sun/star/script/XInvocationAdapterFactory2.idl2
-rw-r--r--udkapi/com/sun/star/script/XLibraryAccess.idl10
-rw-r--r--udkapi/com/sun/star/script/XScriptEventsAttacher.idl3
-rw-r--r--udkapi/com/sun/star/script/XScriptEventsSupplier.idl3
-rw-r--r--udkapi/com/sun/star/script/XScriptListener.idl5
-rw-r--r--udkapi/com/sun/star/script/XStarBasicAccess.idl7
-rw-r--r--udkapi/com/sun/star/script/XStarBasicDialogInfo.idl5
-rw-r--r--udkapi/com/sun/star/script/XStarBasicLibraryInfo.idl9
-rw-r--r--udkapi/com/sun/star/script/XStarBasicModuleInfo.idl6
-rw-r--r--udkapi/com/sun/star/script/XTypeConverter.idl3
44 files changed, 0 insertions, 244 deletions
diff --git a/udkapi/com/sun/star/script/AllEventObject.idl b/udkapi/com/sun/star/script/AllEventObject.idl
index 52d73b6c9ec6..25e771baf4ad 100644
--- a/udkapi/com/sun/star/script/AllEventObject.idl
+++ b/udkapi/com/sun/star/script/AllEventObject.idl
@@ -24,11 +24,9 @@
#include <com/sun/star/reflection/XIdlClass.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** This event is a wrapper for an original event in a forwarding event.
<p> Usually the original event is the first argument in the
@@ -36,7 +34,6 @@
*/
published struct AllEventObject: com::sun::star::lang::EventObject
{
- //-------------------------------------------------------------------------
/** A helper value for the implementation that can be used arbitrarily.
<p>This field reflects the third parameter of the method
@@ -45,23 +42,19 @@ published struct AllEventObject: com::sun::star::lang::EventObject
*/
any Helper;
- //-------------------------------------------------------------------------
/** contains the type of the original listener.
*/
type ListenerType;
- //-------------------------------------------------------------------------
/** The original method name on which the event was fired.
*/
string MethodName;
- //-------------------------------------------------------------------------
/** The arguments of the original method.
*/
sequence<any> Arguments;
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/AllListenerAdapter.idl b/udkapi/com/sun/star/script/AllListenerAdapter.idl
index 4869d7bb422b..39a1dc985464 100644
--- a/udkapi/com/sun/star/script/AllListenerAdapter.idl
+++ b/udkapi/com/sun/star/script/AllListenerAdapter.idl
@@ -22,18 +22,15 @@
#include <com/sun/star/script/XAllListenerAdapterService.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** makes it possible to generate the adapters from specific
interfaces to the interface <type>XAllListener</type>.
*/
published service AllListenerAdapter
: com::sun::star::script::XAllListenerAdapterService;
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/ArrayWrapper.idl b/udkapi/com/sun/star/script/ArrayWrapper.idl
index 9bec00fbeb30..36e22183e1d5 100644
--- a/udkapi/com/sun/star/script/ArrayWrapper.idl
+++ b/udkapi/com/sun/star/script/ArrayWrapper.idl
@@ -22,10 +22,8 @@
#include <com/sun/star/uno/XInterface.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** Allows an UNO sequence that is passed between different language
boundries to indicate it prefers to be represented as a multidimensional
array with 0 or 1 based indices. UNO does not natively represent
@@ -49,7 +47,6 @@ struct ArrayWrapper
any Array;
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/BasicErrorException.idl b/udkapi/com/sun/star/script/BasicErrorException.idl
index b100eef425bc..e967e4bc0df2 100644
--- a/udkapi/com/sun/star/script/BasicErrorException.idl
+++ b/udkapi/com/sun/star/script/BasicErrorException.idl
@@ -22,11 +22,9 @@
#include <com/sun/star/uno/Exception.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** is thrown in order to transport an error to Basic.
@@ -34,13 +32,11 @@ module com { module sun { module star { module script {
*/
published exception BasicErrorException: com::sun::star::uno::Exception
{
- //-------------------------------------------------------------------------
/** The error code.
*/
long ErrorCode;
- //-------------------------------------------------------------------------
/** Specifies the argument which is used in the localized error message for
the placeholder.
@@ -49,7 +45,6 @@ published exception BasicErrorException: com::sun::star::uno::Exception
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/CannotConvertException.idl b/udkapi/com/sun/star/script/CannotConvertException.idl
index dfcfb18b553a..5c93fcc99037 100644
--- a/udkapi/com/sun/star/script/CannotConvertException.idl
+++ b/udkapi/com/sun/star/script/CannotConvertException.idl
@@ -24,11 +24,9 @@
#include <com/sun/star/uno/TypeClass.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** This exception is thrown to indicate that a type conversion can not be performed.
*/
@@ -50,7 +48,6 @@ published exception CannotConvertException: com::sun::star::uno::Exception
long ArgumentIndex;
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/CannotCreateAdapterException.idl b/udkapi/com/sun/star/script/CannotCreateAdapterException.idl
index f404e09a95c7..c10a0d8332c7 100644
--- a/udkapi/com/sun/star/script/CannotCreateAdapterException.idl
+++ b/udkapi/com/sun/star/script/CannotCreateAdapterException.idl
@@ -22,11 +22,9 @@
#include <com/sun/star/uno/Exception.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** is thrown by an attacher if an adapter service cannot create the
appropriate adapter.
@@ -38,7 +36,6 @@ published exception CannotCreateAdapterException: com::sun::star::uno::Exception
{
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/ContextInformation.idl b/udkapi/com/sun/star/script/ContextInformation.idl
index 566d14a31c16..ba77b91e4f2c 100644
--- a/udkapi/com/sun/star/script/ContextInformation.idl
+++ b/udkapi/com/sun/star/script/ContextInformation.idl
@@ -20,11 +20,9 @@
#define __com_sun_star_script_ContextInformation_idl__
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** provides information about a certain stack frame.
@deprecated
@@ -37,14 +35,12 @@ published struct ContextInformation
*/
string Name;
- //-------------------------------------------------------------------------
/** Source code of the Module, that is associated with the context. If the source can
be accessed using the ModuleName or if the source is unknown (executing compiled
code) this string can be empty.
*/
string SourceCode;
- //-------------------------------------------------------------------------
/** contains the first line in the module's source code associated with
the context.
@@ -58,33 +54,28 @@ published struct ContextInformation
*/
long StartLine;
- //-------------------------------------------------------------------------
/** contains the first column in the <var>StartLine</var> associated with
the context.
*/
long StartColumn;
- //-------------------------------------------------------------------------
/** contains the last line in the module's source code associated with
the context.
*/
long EndLine;
- //-------------------------------------------------------------------------
/** contains the first column in the <var>EndLine</var> that is NOT
associated with the context.
*/
long EndColumn;
- //-------------------------------------------------------------------------
/** Get all names of the local variable in this context.
*/
sequence<string> LocalVariableNames;
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/Converter.idl b/udkapi/com/sun/star/script/Converter.idl
index 9080fba0a483..e90b3f4f8be6 100644
--- a/udkapi/com/sun/star/script/Converter.idl
+++ b/udkapi/com/sun/star/script/Converter.idl
@@ -22,11 +22,9 @@
#include <com/sun/star/script/XTypeConverter.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** This service provides a widening converter converting from one type to another,
if possible.
@@ -78,7 +76,6 @@
*/
published service Converter: XTypeConverter;
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/Engine.idl b/udkapi/com/sun/star/script/Engine.idl
index 7bb0b2cb87bc..95ba668ae54f 100644
--- a/udkapi/com/sun/star/script/Engine.idl
+++ b/udkapi/com/sun/star/script/Engine.idl
@@ -22,11 +22,9 @@
#include <com/sun/star/script/XEngine.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
// DocMerge from xml: service com::sun::star::script::Engine
/** service that any scripting engine must implement.
@@ -43,7 +41,6 @@ published service Engine
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/FailReason.idl b/udkapi/com/sun/star/script/FailReason.idl
index 84941eda88e0..3d8d209a6889 100644
--- a/udkapi/com/sun/star/script/FailReason.idl
+++ b/udkapi/com/sun/star/script/FailReason.idl
@@ -20,11 +20,9 @@
#define __com_sun_star_script_FailReason_idl__
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** These values specify the reason why a type conversion failed.
*/
@@ -73,7 +71,6 @@ published constants FailReason
const long UNKNOWN = 10;
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/FinishEngineEvent.idl b/udkapi/com/sun/star/script/FinishEngineEvent.idl
index 1fa011b1f820..f9858f0cdc58 100644
--- a/udkapi/com/sun/star/script/FinishEngineEvent.idl
+++ b/udkapi/com/sun/star/script/FinishEngineEvent.idl
@@ -24,30 +24,25 @@
#include <com/sun/star/script/FinishReason.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** event contains the reasons and the data for the
<member>XEngineListener::finished()</member> method.
@deprecated
*/
published struct FinishEngineEvent: com::sun::star::lang::EventObject
{
- //-------------------------------------------------------------------------
/** specifies why the script terminates.
*/
com::sun::star::script::FinishReason Finish;
- //-------------------------------------------------------------------------
/** error message.
<p>Only valid if Reason is RuntimeError or CompileError.</p>
*/
string ErrorMessage;
- //-------------------------------------------------------------------------
/** contains the return value.
<p>This field is only valid if <member>FinishEngineEvent::Finish</member> is
@@ -57,7 +52,6 @@ published struct FinishEngineEvent: com::sun::star::lang::EventObject
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/FinishReason.idl b/udkapi/com/sun/star/script/FinishReason.idl
index 274af567d5ad..ed4afc9b3b52 100644
--- a/udkapi/com/sun/star/script/FinishReason.idl
+++ b/udkapi/com/sun/star/script/FinishReason.idl
@@ -20,34 +20,28 @@
#define __com_sun_star_script_FinishReason_idl__
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** contains the response for a scripting engine termination.
@deprecated
*/
published enum FinishReason
{
- //-------------------------------------------------------------------------
/** script in the engine terminated normally.
*/
OK,
- //-------------------------------------------------------------------------
/** script in the engine was cancelled.
*/
Cancel,
- //-------------------------------------------------------------------------
/** error occurred during script execution or compiling.
*/
Error
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/InterruptEngineEvent.idl b/udkapi/com/sun/star/script/InterruptEngineEvent.idl
index 5fa036121996..28def4899e57 100644
--- a/udkapi/com/sun/star/script/InterruptEngineEvent.idl
+++ b/udkapi/com/sun/star/script/InterruptEngineEvent.idl
@@ -24,17 +24,14 @@
#include <com/sun/star/script/InterruptReason.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** describes an interrupt which occurs in the scripting engine.
@deprecated
*/
published struct InterruptEngineEvent: com::sun::star::lang::EventObject
{
- //-------------------------------------------------------------------------
/** fully qualified name to address the module or function affected by the event that
took place.
@@ -43,7 +40,6 @@ published struct InterruptEngineEvent: com::sun::star::lang::EventObject
*/
string Name;
- //-------------------------------------------------------------------------
/** source code of the Module affected by the event that took place.
<p>If the source can
@@ -52,7 +48,6 @@ published struct InterruptEngineEvent: com::sun::star::lang::EventObject
*/
string SourceCode;
- //-------------------------------------------------------------------------
/** contains the first line in the module's source code that is affected
by the event that took place.
@@ -68,38 +63,32 @@ published struct InterruptEngineEvent: com::sun::star::lang::EventObject
*/
long StartLine;
- //-------------------------------------------------------------------------
/** contains the first column in the "StartLine" that is affected by the
event that took place.
*/
long StartColumn;
- //-------------------------------------------------------------------------
/** contains the last line in the module's source code that is affected
by the event that took place.
*/
long EndLine;
- //-------------------------------------------------------------------------
/** contains the first column in the "EndLine" which is NOT affected by
the event that took place.
*/
long EndColumn;
- //-------------------------------------------------------------------------
/** error message.
<p>Only valid if Reason is RuntimeError or CompileError.</p>
*/
string ErrorMessage;
- //-------------------------------------------------------------------------
/** contains the interrupt reason.
*/
com::sun::star::script::InterruptReason Reason;
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/InterruptReason.idl b/udkapi/com/sun/star/script/InterruptReason.idl
index 025b02799dd7..072175a2c69b 100644
--- a/udkapi/com/sun/star/script/InterruptReason.idl
+++ b/udkapi/com/sun/star/script/InterruptReason.idl
@@ -20,60 +20,49 @@
#define __com_sun_star_script_InterruptReason_idl__
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** values used to specify the response for a scripting engine
interrupt.
@deprecated
*/
published enum InterruptReason
{
- //-------------------------------------------------------------------------
/** script execution was cancelled.
*/
Cancel,
- //-------------------------------------------------------------------------
/** runtime error occurred during script execution.
*/
RuntimeError,
- //-------------------------------------------------------------------------
/** script has invalid syntax.
*/
CompileError,
- //-------------------------------------------------------------------------
/** script stopped at a breakpoint.
*/
BreakPoint,
- //-------------------------------------------------------------------------
/** script stops because only one scripting engine command was executed.
*/
Step,
- //-------------------------------------------------------------------------
/** script stops because one step was executed.
*/
StepOver,
- //-------------------------------------------------------------------------
/** script stops because it leaves a function.
*/
StepOut,
- //-------------------------------------------------------------------------
/** script stop because one step was executed.
*/
StepStatement
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/Invocation.idl b/udkapi/com/sun/star/script/Invocation.idl
index 73ac4a40ef2f..ec6ed2937040 100644
--- a/udkapi/com/sun/star/script/Invocation.idl
+++ b/udkapi/com/sun/star/script/Invocation.idl
@@ -22,11 +22,9 @@
#include <com/sun/star/lang/XSingleServiceFactory.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** factory service that allows construction of Invocation objects.
<p>Invoke createInstanceWithArguments() of XSingleServiceFactory
@@ -39,7 +37,6 @@
*/
published service Invocation : com::sun::star::lang::XSingleServiceFactory;
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/InvocationAdapterFactory.idl b/udkapi/com/sun/star/script/InvocationAdapterFactory.idl
index 681cf92cfffc..200872843a38 100644
--- a/udkapi/com/sun/star/script/InvocationAdapterFactory.idl
+++ b/udkapi/com/sun/star/script/InvocationAdapterFactory.idl
@@ -23,11 +23,9 @@
#include <com/sun/star/script/XInvocationAdapterFactory2.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** Provides functionality to create an adapter that supports (a)
special interface type(s) and maps calls to the interface's
methods to an invocation interface.
@@ -58,7 +56,6 @@ published service InvocationAdapterFactory
interface com::sun::star::script::XInvocationAdapterFactory2;
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/InvocationInfo.idl b/udkapi/com/sun/star/script/InvocationInfo.idl
index a0a1596cc465..090a7a205345 100644
--- a/udkapi/com/sun/star/script/InvocationInfo.idl
+++ b/udkapi/com/sun/star/script/InvocationInfo.idl
@@ -23,11 +23,9 @@
#include <com/sun/star/reflection/ParamMode.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/**
This struct is used to specify information about object members
@@ -74,7 +72,6 @@ published struct InvocationInfo
sequence< com::sun::star::reflection::ParamMode > aParamModes;
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/JavaScript.idl b/udkapi/com/sun/star/script/JavaScript.idl
index a58a5cc74e66..e5bc415ff4f8 100644
--- a/udkapi/com/sun/star/script/JavaScript.idl
+++ b/udkapi/com/sun/star/script/JavaScript.idl
@@ -22,11 +22,9 @@
#include <com/sun/star/script/Engine.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** service is implementation of a JavaScript interpreter.
<p>The interpreter should be similar to JavaScript 1.1. The exact
@@ -39,7 +37,6 @@ published service JavaScript
service com::sun::star::script::Engine;
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/MemberType.idl b/udkapi/com/sun/star/script/MemberType.idl
index e9682ad24828..25dd20c8a351 100644
--- a/udkapi/com/sun/star/script/MemberType.idl
+++ b/udkapi/com/sun/star/script/MemberType.idl
@@ -19,11 +19,9 @@
#ifndef __com_sun_star_script_MemberType_idl__
#define __com_sun_star_script_MemberType_idl__
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** These values are used to specify a member accessible by
<type>XInvocation</type>.
*/
@@ -35,7 +33,6 @@ published enum MemberType
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/ScriptEvent.idl b/udkapi/com/sun/star/script/ScriptEvent.idl
index 944015520f01..7574fb78b242 100644
--- a/udkapi/com/sun/star/script/ScriptEvent.idl
+++ b/udkapi/com/sun/star/script/ScriptEvent.idl
@@ -22,23 +22,19 @@
#include <com/sun/star/script/AllEventObject.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** script event that gets delivered whenever a script event takes place.
<p>For that to happen, a "ScriptEventDescriptor" must be registered at
and attached to an object by an <type>XEventAttacherManager</type>.</p>
*/
published struct ScriptEvent: com::sun::star::script::AllEventObject
{
- //-------------------------------------------------------------------------
/** type of the script language as string; for example, "Basic" or "StarScript".
*/
string ScriptType;
- //-------------------------------------------------------------------------
/** script code as string.
<p>The code has to correspond with the language
@@ -48,7 +44,6 @@ published struct ScriptEvent: com::sun::star::script::AllEventObject
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/ScriptEventDescriptor.idl b/udkapi/com/sun/star/script/ScriptEventDescriptor.idl
index cc722fc4ac89..c97c422c03ad 100644
--- a/udkapi/com/sun/star/script/ScriptEventDescriptor.idl
+++ b/udkapi/com/sun/star/script/ScriptEventDescriptor.idl
@@ -20,11 +20,9 @@
#define __com_sun_star_script_ScriptEventDescriptor_idl__
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** describes an effect, especially a script to be executed,
for a certain event given by the listener type and the name of the
event method.
@@ -35,12 +33,10 @@ published struct ScriptEventDescriptor
*/
string ListenerType;
- //-------------------------------------------------------------------------
/** event method as string.
*/
string EventMethod;
- //-------------------------------------------------------------------------
/** data to be used if the addListener method needs an additional
parameter.
<p>If the type of this parameter is different from string,
@@ -48,12 +44,10 @@ published struct ScriptEventDescriptor
*/
string AddListenerParam;
- //-------------------------------------------------------------------------
/** type of the script language as string; for example, "Basic" or "StarScript".
*/
string ScriptType;
- //-------------------------------------------------------------------------
/** script code as string (the code has to correspond with the language
defined by ScriptType).
*/
@@ -61,7 +55,6 @@ published struct ScriptEventDescriptor
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XAllListener.idl b/udkapi/com/sun/star/script/XAllListener.idl
index 0d8b170878e3..2072b39c43e8 100644
--- a/udkapi/com/sun/star/script/XAllListener.idl
+++ b/udkapi/com/sun/star/script/XAllListener.idl
@@ -26,11 +26,9 @@
#include <com/sun/star/reflection/InvocationTargetException.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** specifies a listener combining all methods
of a listener interface in a single generic call.
@@ -39,12 +37,10 @@
*/
published interface XAllListener: com::sun::star::lang::XEventListener
{
- //-------------------------------------------------------------------------
/** gets called when an event occurs at the object.
*/
[oneway] void firing( [in] com::sun::star::script::AllEventObject iaEvent );
- //-------------------------------------------------------------------------
/** gets called when a "vetoable event" occurs at the object.
<p>That happens when the listener method raises an exception,
@@ -54,7 +50,6 @@ published interface XAllListener: com::sun::star::lang::XEventListener
raises( com::sun::star::reflection::InvocationTargetException );
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XAllListenerAdapterService.idl b/udkapi/com/sun/star/script/XAllListenerAdapterService.idl
index 2dd346fb0e6a..ae12e0779ace 100644
--- a/udkapi/com/sun/star/script/XAllListenerAdapterService.idl
+++ b/udkapi/com/sun/star/script/XAllListenerAdapterService.idl
@@ -26,17 +26,14 @@
#include <com/sun/star/script/XAllListener.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** allows the generation of adapters from specific
interfaces to the <type>XAllListener</type> interface.
*/
published interface XAllListenerAdapterService: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** creates a wrapper from the listener of type
<var>xListenerType</var> to the <type>XAllListener</type>
listener.
@@ -51,7 +48,6 @@ published interface XAllListenerAdapterService: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XDebugging.idl b/udkapi/com/sun/star/script/XDebugging.idl
index e1d04b9f79b0..2cd9b0f95659 100644
--- a/udkapi/com/sun/star/script/XDebugging.idl
+++ b/udkapi/com/sun/star/script/XDebugging.idl
@@ -24,11 +24,9 @@
#include <com/sun/star/script/ContextInformation.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
// DocMerge from xml: interface com::sun::star::script::XDebugging
/** makes it possible to set breakpoints in an interpreter.
@@ -36,7 +34,6 @@
*/
published interface XDebugging: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** returns the source code line where the breakpoint was set.
<p>The value can differ from the parameter
@@ -48,12 +45,10 @@ published interface XDebugging: com::sun::star::uno::XInterface
[in] long nSourceCodeLine,
[in] boolean bOn );
- //-------------------------------------------------------------------------
/** clears all breakpoints in the module set by "setBreakPoint".
*/
void clearAllBreakPoints( [in] string aModuleName );
- //-------------------------------------------------------------------------
/** Evaluates an expression.
@returns the value of the expression as string.
@@ -65,12 +60,10 @@ published interface XDebugging: com::sun::star::uno::XInterface
string eval( [in] string aSourceCode,
[in] short nCallStackPos );
- //-------------------------------------------------------------------------
/** Returns the engine's stack trace of the current execute position. Line break is the delimiter.
*/
sequence<string> getStackTrace();
- //-------------------------------------------------------------------------
/** returns more detailed information about a specified stack frame.
@param nCallStackPos
@@ -79,13 +72,11 @@ published interface XDebugging: com::sun::star::uno::XInterface
*/
com::sun::star::script::ContextInformation getContextInformation( [in] short nCallStackPos );
- //-------------------------------------------------------------------------
/** returns the value of the variable at the given stack position.
*/
string dumpVariable( [in] string aVariableName,
[in] short nCallStackPos );
- //-------------------------------------------------------------------------
/** sets the value of the specified variable within the specified
stack frame.
*/
@@ -93,20 +84,17 @@ published interface XDebugging: com::sun::star::uno::XInterface
[in] string aValue,
[in] short nCallStackPos );
- //-------------------------------------------------------------------------
/** returns whether the given variable exists within the specified stack frame.
*/
boolean isVariable( [in] string aVariableName,
[in] short nCallStackPos );
- //-------------------------------------------------------------------------
/** stops the execution of the interpreter.
<p>To continue with the execution, call <method>XDebugging::doContinue</method>.
*/
void stop();
- //-------------------------------------------------------------------------
/** executes the next and only the next statement.
<p>If the next statement is a function call, the function is
@@ -114,7 +102,6 @@ published interface XDebugging: com::sun::star::uno::XInterface
*/
void stepOver();
- //-------------------------------------------------------------------------
/** executes the next and only the next statement.
<p>If the next statement is a function call, only the function
@@ -122,19 +109,16 @@ published interface XDebugging: com::sun::star::uno::XInterface
*/
void stepIn();
- //-------------------------------------------------------------------------
/** executes the program until the next return from this stack frame.
*/
void stepOut();
- //-------------------------------------------------------------------------
/** continues the program execution.
*/
void doContinue();
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XDefaultMethod.idl b/udkapi/com/sun/star/script/XDefaultMethod.idl
index a628c787d78e..fe86064f10ed 100644
--- a/udkapi/com/sun/star/script/XDefaultMethod.idl
+++ b/udkapi/com/sun/star/script/XDefaultMethod.idl
@@ -23,7 +23,6 @@
#include <com/sun/star/uno/XInterface.idl>
module com { module sun { module star { module script {
-//==============================================================================
/**
An object supporting this interface indicates to interested
parties or clients the name of the default method for
@@ -37,7 +36,6 @@ module com { module sun { module star { module script {
*/
interface XDefaultMethod : ::com::sun::star::uno::XInterface
{
- //-----------------------------------------------------------------------
/**
Returns the name of the default method
diff --git a/udkapi/com/sun/star/script/XDefaultProperty.idl b/udkapi/com/sun/star/script/XDefaultProperty.idl
index 60e2cd305c23..2647d7d9389f 100644
--- a/udkapi/com/sun/star/script/XDefaultProperty.idl
+++ b/udkapi/com/sun/star/script/XDefaultProperty.idl
@@ -23,7 +23,6 @@
#include <com/sun/star/uno/XInterface.idl>
module com { module sun { module star { module script {
-//==============================================================================
/**
An object supporting this interface indicates to interested
parties or clients the name of the default propery for
@@ -41,7 +40,6 @@ module com { module sun { module star { module script {
*/
interface XDefaultProperty : ::com::sun::star::uno::XInterface
{
- //-----------------------------------------------------------------------
/**
Returns the name of the default property
diff --git a/udkapi/com/sun/star/script/XDirectInvocation.idl b/udkapi/com/sun/star/script/XDirectInvocation.idl
index a45b3a19128a..c0bcac41e148 100644
--- a/udkapi/com/sun/star/script/XDirectInvocation.idl
+++ b/udkapi/com/sun/star/script/XDirectInvocation.idl
@@ -30,16 +30,13 @@
#include <com/sun/star/beans/UnknownPropertyException.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** provides access to an object's methods and properties.
*/
published interface XDirectInvocation: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** provides access to methods and properties exposed by an object.
@param aParams all parameters, out parameters are not supported
@@ -50,13 +47,11 @@ published interface XDirectInvocation: com::sun::star::uno::XInterface
com::sun::star::script::CannotConvertException,
com::sun::star::reflection::InvocationTargetException );
- //-------------------------------------------------------------------------
/** returns <TRUE/> if the method or property with the specified name exists, else <FALSE/>.
*/
boolean hasMember( [in] string aName );
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XEngine.idl b/udkapi/com/sun/star/script/XEngine.idl
index 916cc9a2653f..a38371934953 100644
--- a/udkapi/com/sun/star/script/XEngine.idl
+++ b/udkapi/com/sun/star/script/XEngine.idl
@@ -26,17 +26,14 @@
#include <com/sun/star/script/XEngineListener.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** makes it possible to control a scripting engine.
@deprecated
*/
published interface XEngine: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** sets an interface to an object as a scripting root.
<p>If the root object implements the XInvocation interface,
@@ -46,24 +43,20 @@ published interface XEngine: com::sun::star::uno::XInterface
*/
void setRoot( [in] com::sun::star::uno::XInterface xRoot );
- //-------------------------------------------------------------------------
/** gets an interface to the object which is the scripting root.
*/
com::sun::star::uno::XInterface getRoot();
- //-------------------------------------------------------------------------
/** sets an access object to get external functions.
*/
void setLibraryAccess( [in] com::sun::star::script::XLibraryAccess Library );
- //-------------------------------------------------------------------------
/** compiles a script module in the scope of the root object.
*/
boolean compile( [in] string ModuleName,
[in] string Script,
[in] boolean CreateDebugInfo );
- //-------------------------------------------------------------------------
/** runs a script specified by a string.
<p>The arguments given in <var>aArgs</var> can be ignored by
@@ -73,7 +66,6 @@ published interface XEngine: com::sun::star::uno::XInterface
[in] com::sun::star::uno::XInterface xThis,
[in] sequence<any> aArgs );
- //-------------------------------------------------------------------------
/** runs the script specified by a string and makes callbacks.
<p>The arguments given in <var>aArgs</var> can be ignored by
@@ -86,14 +78,12 @@ published interface XEngine: com::sun::star::uno::XInterface
[in] sequence<any> args,
[in] com::sun::star::script::XEngineListener xCallback );
- //-------------------------------------------------------------------------
/** terminates the execution of the running script.
<p>The waiting queue is cleared too.</p>
*/
void cancel();
- //-------------------------------------------------------------------------
/** adds an engine listener.
<p>It is suggested to allow multiple registration of the same listener,
@@ -101,7 +91,6 @@ published interface XEngine: com::sun::star::uno::XInterface
*/
void addEngineListener( [in] com::sun::star::script::XEngineListener Listener );
- //-------------------------------------------------------------------------
/** removes an engine listener.
<p>It is suggested to allow multiple registration of the same listener,
@@ -111,7 +100,6 @@ published interface XEngine: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XEngineListener.idl b/udkapi/com/sun/star/script/XEngineListener.idl
index f6033ce77847..c7b512f27c6f 100644
--- a/udkapi/com/sun/star/script/XEngineListener.idl
+++ b/udkapi/com/sun/star/script/XEngineListener.idl
@@ -28,17 +28,14 @@
#include <com/sun/star/script/FinishEngineEvent.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** makes it possible to receive events from a scripting engine.
@deprecated
*/
published interface XEngineListener: com::sun::star::lang::XEventListener
{
- //-------------------------------------------------------------------------
/** gets fired when an interrupt occurs during the script execution.
<p>If you call the method, the execution stops. So in this situation,
@@ -48,19 +45,16 @@ published interface XEngineListener: com::sun::star::lang::XEventListener
*/
void interrupt( [in] com::sun::star::script::InterruptEngineEvent Evt );
- //-------------------------------------------------------------------------
/** gets fired when the script gets into execution state.
*/
void running( [in] com::sun::star::lang::EventObject Evt );
- //-------------------------------------------------------------------------
/** gets fired when the script execution has finished.
*/
void finished( [in] com::sun::star::script::FinishEngineEvent Evt );
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XEventAttacher.idl b/udkapi/com/sun/star/script/XEventAttacher.idl
index 748cbb70fc75..a49074dc4f86 100644
--- a/udkapi/com/sun/star/script/XEventAttacher.idl
+++ b/udkapi/com/sun/star/script/XEventAttacher.idl
@@ -34,17 +34,14 @@
#include <com/sun/star/lang/ServiceNotRegisteredException.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** makes it possible to attach script events given by a sequence of
<type>ScriptEventDescriptor</type> structures to a given interface.
*/
published interface XEventAttacher: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** registers the given "AllListener" object as a listener at the
given interface by creating a suitable listener adapter and
calling the "addListener" method corresponding to the
@@ -60,7 +57,6 @@ published interface XEventAttacher: com::sun::star::uno::XInterface
com::sun::star::script::CannotCreateAdapterException,
com::sun::star::lang::ServiceNotRegisteredException );
- //-------------------------------------------------------------------------
/** registers an object as a listener at the given interface by
creating a suitable listener adapter and calling the method
which corresponds to the listener type.
@@ -79,7 +75,6 @@ published interface XEventAttacher: com::sun::star::uno::XInterface
com::sun::star::script::CannotCreateAdapterException,
com::sun::star::lang::ServiceNotRegisteredException );
- //-------------------------------------------------------------------------
/** removes a listener object as a listener from the given interface.
<p> This method can and should be used as a contrary method
@@ -94,7 +89,6 @@ published interface XEventAttacher: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XEventAttacherManager.idl b/udkapi/com/sun/star/script/XEventAttacherManager.idl
index 09bc348a92e8..be7670e0dc8f 100644
--- a/udkapi/com/sun/star/script/XEventAttacherManager.idl
+++ b/udkapi/com/sun/star/script/XEventAttacherManager.idl
@@ -30,16 +30,13 @@
#include <com/sun/star/script/XScriptListener.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** registers listeners for specified events.
*/
published interface XEventAttacherManager: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** registers one event for an object identified by its index.
<p>If any object is attached under this index, then this
@@ -54,7 +51,6 @@ published interface XEventAttacherManager: com::sun::star::uno::XInterface
[in] com::sun::star::script::ScriptEventDescriptor aScriptEvent )
raises( com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/** registers several events for an object identified by its index.
<p>The result is the same as if the method <member>registerScriptEvent
@@ -77,7 +73,6 @@ published interface XEventAttacherManager: com::sun::star::uno::XInterface
[in] sequence<com::sun::star::script::ScriptEventDescriptor> aScriptEvents )
raises( com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/** revokes the registration of an event.
<p>The parameters <var>ListenerType</var> and
@@ -101,7 +96,6 @@ published interface XEventAttacherManager: com::sun::star::uno::XInterface
[in] string aRemoveListenerParam )
raises( com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/** revokes all events which are registered for the given index.
<p>If the events at this index have been attached to any
@@ -113,7 +107,6 @@ published interface XEventAttacherManager: com::sun::star::uno::XInterface
void revokeScriptEvents( [in] long nIndex )
raises( com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/** creates an empty entry at the given position.
<p>The index <var>n</var> of all entries with <code>n &amp;gt;=
@@ -122,7 +115,6 @@ published interface XEventAttacherManager: com::sun::star::uno::XInterface
void insertEntry( [in] long nIndex )
raises( com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/** removes the entry at the given position.
<p>If any events are registered at this index, they will
@@ -135,7 +127,6 @@ published interface XEventAttacherManager: com::sun::star::uno::XInterface
void removeEntry( [in] long nIndex )
raises( com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/** @eturns
all events registered for the given object index.
@@ -148,7 +139,6 @@ published interface XEventAttacherManager: com::sun::star::uno::XInterface
sequence<com::sun::star::script::ScriptEventDescriptor> getScriptEvents( [in] long Index )
raises( com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/** attaches all the <type>ScriptEvent</type>s which are registered
for the given index to the given object.
@@ -164,7 +154,6 @@ published interface XEventAttacherManager: com::sun::star::uno::XInterface
raises( com::sun::star::lang::IllegalArgumentException,
com::sun::star::lang::ServiceNotRegisteredException );
- //-------------------------------------------------------------------------
/** detaches all the <type>ScriptEvent</type>s from the given object
which are registered at this object for the given index.
@@ -178,7 +167,6 @@ published interface XEventAttacherManager: com::sun::star::uno::XInterface
[in] com::sun::star::uno::XInterface xObject )
raises( com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/** adds an <type>XScriptListener</type> that will be notified when an
event takes place. For that a
<type>ScriptEventDescriptor</type> is registered at and
@@ -192,7 +180,6 @@ published interface XEventAttacherManager: com::sun::star::uno::XInterface
void addScriptListener( [in] com::sun::star::script::XScriptListener xListener )
raises( com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/** removes a <type>XScriptListener</type> from the listener list.
<p>Nothing happens if the listener is not registered.
@@ -207,7 +194,6 @@ published interface XEventAttacherManager: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XInvocation.idl b/udkapi/com/sun/star/script/XInvocation.idl
index 5fd3ba501a7c..88d0546591e8 100644
--- a/udkapi/com/sun/star/script/XInvocation.idl
+++ b/udkapi/com/sun/star/script/XInvocation.idl
@@ -32,11 +32,9 @@
#include <com/sun/star/beans/UnknownPropertyException.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** gives access to an object's methods and properties.
Container access is available through
<type scope="com::sun::star::container">XIndexContainer</type>,
@@ -46,13 +44,11 @@
*/
published interface XInvocation: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** returns the introspection from this object or <NULL/>
if the object does not provide this information.
*/
com::sun::star::beans::XIntrospectionAccess getIntrospection();
- //-------------------------------------------------------------------------
/** provides access to methods exposed by an object.
@param aParams all parameters; pure out params are undefined in sequence,
@@ -76,7 +72,6 @@ published interface XInvocation: com::sun::star::uno::XInterface
com::sun::star::script::CannotConvertException,
com::sun::star::reflection::InvocationTargetException );
- //-------------------------------------------------------------------------
/** sets a value to the property with the specified name.
<p> If the underlying object implements an
@@ -92,7 +87,6 @@ published interface XInvocation: com::sun::star::uno::XInterface
com::sun::star::script::CannotConvertException,
com::sun::star::reflection::InvocationTargetException );
- //-------------------------------------------------------------------------
/** returns the value of the property with the specified name.
@param aPropertyName
@@ -101,7 +95,6 @@ published interface XInvocation: com::sun::star::uno::XInterface
any getValue( [in] string aPropertyName )
raises( com::sun::star::beans::UnknownPropertyException );
- //-------------------------------------------------------------------------
/** returns <TRUE/> if the method with the specified name exists, else <FALSE/>.
<p>This optimizes the calling sequence
@@ -113,7 +106,6 @@ published interface XInvocation: com::sun::star::uno::XInterface
*/
boolean hasMethod( [in] string aName );
- //-------------------------------------------------------------------------
/** returns <TRUE/> if the property with the specified name exists, else <FALSE/>.
<p>This optimizes the calling sequence
@@ -130,7 +122,6 @@ published interface XInvocation: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XInvocation2.idl b/udkapi/com/sun/star/script/XInvocation2.idl
index ac4170636407..be23e0df3ead 100644
--- a/udkapi/com/sun/star/script/XInvocation2.idl
+++ b/udkapi/com/sun/star/script/XInvocation2.idl
@@ -23,11 +23,9 @@
#include <com/sun/star/script/InvocationInfo.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/**
Extension of XInvocation to provide additional information
@@ -65,7 +63,6 @@ published interface XInvocation2: com::sun::star::script::XInvocation
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XInvocationAdapterFactory.idl b/udkapi/com/sun/star/script/XInvocationAdapterFactory.idl
index c0111773ba7c..e03a7dd9be5f 100644
--- a/udkapi/com/sun/star/script/XInvocationAdapterFactory.idl
+++ b/udkapi/com/sun/star/script/XInvocationAdapterFactory.idl
@@ -24,11 +24,9 @@
#include <com/sun/star/script/XInvocation.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** Interface to create adapter objects giving a type to be supported and a
an invocation interface incoming calls are delegated to.
@@ -38,7 +36,6 @@
*/
published interface XInvocationAdapterFactory: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** Creates an adapter interface of given type for calling the given
<type>XInvocation</type> interface.
@@ -53,7 +50,6 @@ published interface XInvocationAdapterFactory: com::sun::star::uno::XInterface
*/
com::sun::star::uno::XInterface createAdapter( [in]XInvocation Invocation, [in]type aType );
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XInvocationAdapterFactory2.idl b/udkapi/com/sun/star/script/XInvocationAdapterFactory2.idl
index a62a82a087a2..ec16b7f52dd8 100644
--- a/udkapi/com/sun/star/script/XInvocationAdapterFactory2.idl
+++ b/udkapi/com/sun/star/script/XInvocationAdapterFactory2.idl
@@ -24,7 +24,6 @@
#include <com/sun/star/script/XInvocation.idl>
-//=============================================================================
module com { module sun { module star { module script {
@@ -49,7 +48,6 @@ published interface XInvocationAdapterFactory2 : com::sun::star::uno::XInterface
[in] XInvocation Invocation,
[in] sequence< type > aTypes );
};
-//=============================================================================
}; }; }; };
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
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XScriptEventsAttacher.idl b/udkapi/com/sun/star/script/XScriptEventsAttacher.idl
index ee0670887042..c98f1c5cbceb 100644
--- a/udkapi/com/sun/star/script/XScriptEventsAttacher.idl
+++ b/udkapi/com/sun/star/script/XScriptEventsAttacher.idl
@@ -31,11 +31,9 @@
#include <com/sun/star/lang/ServiceNotRegisteredException.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/**
This interface can be used to attach script events to a number of
@@ -73,7 +71,6 @@ published interface XScriptEventsAttacher: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XScriptEventsSupplier.idl b/udkapi/com/sun/star/script/XScriptEventsSupplier.idl
index e4fdb33a9593..7c476654a31f 100644
--- a/udkapi/com/sun/star/script/XScriptEventsSupplier.idl
+++ b/udkapi/com/sun/star/script/XScriptEventsSupplier.idl
@@ -24,11 +24,9 @@
#include <com/sun/star/container/XNameContainer.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/**
Gives access to an event container represented by an
@@ -43,7 +41,6 @@ published interface XScriptEventsSupplier: com::sun::star::uno::XInterface
com::sun::star::container::XNameContainer getEvents();
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XScriptListener.idl b/udkapi/com/sun/star/script/XScriptListener.idl
index aa076123fbb7..6c106078ec79 100644
--- a/udkapi/com/sun/star/script/XScriptListener.idl
+++ b/udkapi/com/sun/star/script/XScriptListener.idl
@@ -26,23 +26,19 @@
#include <com/sun/star/reflection/InvocationTargetException.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** makes it possible to receive <type>ScriptEvent</type>s.
*/
published interface XScriptListener: com::sun::star::lang::XEventListener
{
- //-------------------------------------------------------------------------
/** gets called when an event takes place. For that a
<type>ScriptEventDescriptor</type> is registered at and
attached to an object by an <type>XEventAttacherManager</type>.
*/
void firing( [in] com::sun::star::script::ScriptEvent aEvent );
- //-------------------------------------------------------------------------
/** gets called when a "vetoable event" occurs at the object.
*/
any approveFiring( [in] com::sun::star::script::ScriptEvent aEvent )
@@ -50,7 +46,6 @@ published interface XScriptListener: com::sun::star::lang::XEventListener
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XStarBasicAccess.idl b/udkapi/com/sun/star/script/XStarBasicAccess.idl
index e30ca4b06849..e12f6dd030cd 100644
--- a/udkapi/com/sun/star/script/XStarBasicAccess.idl
+++ b/udkapi/com/sun/star/script/XStarBasicAccess.idl
@@ -21,11 +21,9 @@
#include <com/sun/star/container/XNameContainer.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** Interface representing a library and provides access to its modules
@@ -33,14 +31,12 @@
*/
published interface XStarBasicAccess: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** returns
the library container giving access to the libraries stored in a document
or basic library file.
*/
com::sun::star::container::XNameContainer getLibraryContainer();
- //-------------------------------------------------------------------------
/**
Creates an empty library. This method can be called alternatively to
accessing directly the NameContainer returned by getLibraryContainer.
@@ -52,7 +48,6 @@ published interface XStarBasicAccess: com::sun::star::uno::XInterface
[in] string ExternalSourceURL, [in] string LinkTargetURL )
raises( com::sun::star::container::ElementExistException );
- //-------------------------------------------------------------------------
/**
Adds a module to an existing (e.g., created by createLibrary) library.
By using this method together with createLibrary the caller does not have
@@ -65,7 +60,6 @@ published interface XStarBasicAccess: com::sun::star::uno::XInterface
[in] string Language, [in] string Source )
raises( com::sun::star::container::NoSuchElementException );
- //-------------------------------------------------------------------------
/**
Adds an old style basic dialog (SI controls) to an existing (e.g., created
by createLibrary) library.
@@ -81,7 +75,6 @@ published interface XStarBasicAccess: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XStarBasicDialogInfo.idl b/udkapi/com/sun/star/script/XStarBasicDialogInfo.idl
index 40044d0fdcb6..845a0de1f8af 100644
--- a/udkapi/com/sun/star/script/XStarBasicDialogInfo.idl
+++ b/udkapi/com/sun/star/script/XStarBasicDialogInfo.idl
@@ -22,11 +22,9 @@
#include <com/sun/star/uno/XInterface.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** Interface describing old style basic dialog (SI controls) in binary data
@@ -34,19 +32,16 @@
*/
published interface XStarBasicDialogInfo: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** returns the name of the dialog
*/
string getName();
- //-------------------------------------------------------------------------
/** returns binary data describing the SIDialog in SBX stream format
*/
sequence< byte > getData();
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XStarBasicLibraryInfo.idl b/udkapi/com/sun/star/script/XStarBasicLibraryInfo.idl
index eb9aca7d51fd..92e45bf5daec 100644
--- a/udkapi/com/sun/star/script/XStarBasicLibraryInfo.idl
+++ b/udkapi/com/sun/star/script/XStarBasicLibraryInfo.idl
@@ -21,11 +21,9 @@
#include <com/sun/star/container/XNameContainer.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** Interface representing a library and provides access to its modules
@@ -33,12 +31,10 @@
*/
published interface XStarBasicLibraryInfo: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** returns the library's name
*/
string getName();
- //-------------------------------------------------------------------------
/** returns
the module container giving access to the modules stored in the library.
The container has to be returned in any case, no matter if the library is
@@ -49,7 +45,6 @@ published interface XStarBasicLibraryInfo: com::sun::star::uno::XInterface
*/
com::sun::star::container::XNameContainer getModuleContainer();
- //-------------------------------------------------------------------------
/** returns
the dialog container giving access to the dialogs stored in the library.
The container has to be returned in any case, no matter if the library is
@@ -60,14 +55,12 @@ published interface XStarBasicLibraryInfo: com::sun::star::uno::XInterface
*/
com::sun::star::container::XNameContainer getDialogContainer();
- //-------------------------------------------------------------------------
/** returns
the password, if the library is protected with one,
an empty string otherwise.
*/
string getPassword();
- //-------------------------------------------------------------------------
/** returns an
URL describing the location where the library is stored if the library
is stored seperately (for example not in the main XML file but in a
@@ -77,7 +70,6 @@ published interface XStarBasicLibraryInfo: com::sun::star::uno::XInterface
*/
string getExternalSourceURL();
- //-------------------------------------------------------------------------
/** returns an
URL describing the location of the library linked to.
@@ -89,7 +81,6 @@ published interface XStarBasicLibraryInfo: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XStarBasicModuleInfo.idl b/udkapi/com/sun/star/script/XStarBasicModuleInfo.idl
index 161e0e4bfe81..6b1abbffd45f 100644
--- a/udkapi/com/sun/star/script/XStarBasicModuleInfo.idl
+++ b/udkapi/com/sun/star/script/XStarBasicModuleInfo.idl
@@ -22,28 +22,23 @@
#include <com/sun/star/uno/XInterface.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** Script Module containing some scripting code in a certain scripting language
@deprecated
*/
published interface XStarBasicModuleInfo: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** returns the name of the module
*/
string getName();
- //-------------------------------------------------------------------------
/** returns the type of the script language as string, for example, "StarBasic" or "JavaScript".
*/
string getLanguage();
- //-------------------------------------------------------------------------
/** returns the script source code as string.
<p>The code has to correspond with the language
@@ -53,7 +48,6 @@ published interface XStarBasicModuleInfo: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/script/XTypeConverter.idl b/udkapi/com/sun/star/script/XTypeConverter.idl
index 789b7da55c6f..bef8f807fc23 100644
--- a/udkapi/com/sun/star/script/XTypeConverter.idl
+++ b/udkapi/com/sun/star/script/XTypeConverter.idl
@@ -30,11 +30,9 @@
#include <com/sun/star/uno/TypeClass.idl>
-//=============================================================================
module com { module sun { module star { module script {
-//=============================================================================
/** Interface to provide standard type conversions.
@@ -81,7 +79,6 @@ published interface XTypeConverter: com::sun::star::uno::XInterface
com::sun::star::script::CannotConvertException );
};
-//=============================================================================
}; }; }; };