From b7ba598ced9708da45372a6c3f8e1a17c306be8f Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Mon, 29 Apr 2013 18:33:02 +0200 Subject: *api: clean up multi-line and mal-formed XML tags It is amazing what some people believe autodoc supports. Also, com::sun::star::uno::Any does not exist in IDL, that is part of the C++ language binding. Change-Id: I1f1f5cf5d27663ace6ff618ecbecb41fd2dfa1fc --- udkapi/com/sun/star/beans/Ambiguous.idl | 5 +- udkapi/com/sun/star/beans/Defaulted.idl | 5 +- udkapi/com/sun/star/beans/Introspection.idl | 7 +- udkapi/com/sun/star/beans/MethodConcept.idl | 7 +- udkapi/com/sun/star/beans/Optional.idl | 5 +- .../star/beans/TolerantPropertySetResultType.idl | 6 +- udkapi/com/sun/star/beans/XIntrospection.idl | 4 +- udkapi/com/sun/star/beans/XIntrospectionAccess.idl | 82 ++++++++++------------ .../com/sun/star/container/XIdentifierAccess.idl | 2 +- udkapi/com/sun/star/io/XAsyncOutputMonitor.idl | 9 ++- udkapi/com/sun/star/io/XOutputStream.idl | 4 +- udkapi/com/sun/star/io/XTextInputStream.idl | 4 +- udkapi/com/sun/star/io/XTextOutputStream.idl | 4 +- .../sun/star/java/JavaInitializationException.idl | 8 +-- udkapi/com/sun/star/lang/Locale.idl | 2 +- udkapi/com/sun/star/lang/XComponent.idl | 13 ++-- udkapi/com/sun/star/reflection/XIdlField2.idl | 6 +- .../star/reflection/XInterfaceTypeDescription2.idl | 14 ++-- udkapi/com/sun/star/reflection/XPublished.idl | 52 +++++++------- .../star/reflection/XServiceTypeDescription2.idl | 7 +- .../star/reflection/XSingletonTypeDescription2.idl | 8 +-- .../sun/star/reflection/XStructTypeDescription.idl | 27 ++++--- .../com/sun/star/script/XEventAttacherManager.idl | 4 +- udkapi/com/sun/star/uri/XVndSunStarExpandUrl.idl | 3 +- 24 files changed, 130 insertions(+), 158 deletions(-) (limited to 'udkapi/com') diff --git a/udkapi/com/sun/star/beans/Ambiguous.idl b/udkapi/com/sun/star/beans/Ambiguous.idl index 2efde9031595..73b063f7c5c5 100644 --- a/udkapi/com/sun/star/beans/Ambiguous.idl +++ b/udkapi/com/sun/star/beans/Ambiguous.idl @@ -25,9 +25,8 @@ module com { module sun { module star { module beans { A value of a given type that can be ambiguous.

This structure is used as the type of interface attributes corresponding - to instances of Property that - have the PropertyAttribute::MAYBEAMBIGUOUS.

+ to instances of com::sun::star::beans::Property that + have the com::sun::star::beans::PropertyAttribute::MAYBEAMBIGUOUS.

*/ struct Ambiguous { /** diff --git a/udkapi/com/sun/star/beans/Defaulted.idl b/udkapi/com/sun/star/beans/Defaulted.idl index b3e5a1ea3504..b7f816e59242 100644 --- a/udkapi/com/sun/star/beans/Defaulted.idl +++ b/udkapi/com/sun/star/beans/Defaulted.idl @@ -25,9 +25,8 @@ module com { module sun { module star { module beans { A value of a given type that can be defaulted.

This structure is used as the type of interface attributes corresponding - to instances of Property that - have the PropertyAttribute::MAYBEDEFAULT.

+ to instances of com::sun::star::beans::Property that + have the com::sun::star::beans::PropertyAttribute::MAYBEDEFAULT.

*/ struct Defaulted { /** diff --git a/udkapi/com/sun/star/beans/Introspection.idl b/udkapi/com/sun/star/beans/Introspection.idl index 706dc27ff082..45b33ce83e84 100644 --- a/udkapi/com/sun/star/beans/Introspection.idl +++ b/udkapi/com/sun/star/beans/Introspection.idl @@ -28,11 +28,10 @@ /** provides functionality to get information about an object's properties and methods.

Important note:An object can only be - inspected completely if it supports the XTypeProvider interface.

+ inspected completely if it supports the + com::sun::star::lang::XTypeProvider interface.

-

For details see method XIntrospection::inspect - .

+

For details see method XIntrospection::inspect() .

*/ published service Introspection : com::sun::star::beans::XIntrospection; diff --git a/udkapi/com/sun/star/beans/MethodConcept.idl b/udkapi/com/sun/star/beans/MethodConcept.idl index 613c87593df4..8d34a054f0da 100644 --- a/udkapi/com/sun/star/beans/MethodConcept.idl +++ b/udkapi/com/sun/star/beans/MethodConcept.idl @@ -67,8 +67,8 @@ published constants MethodConcept

These methods have the signature create...Enumeration and return an interface - that is derived from - XEnumeration Additionally, the method + that is derived from com::sun::star::container::XEnumeration. + Additionally, the method com::sun::star::container::XEnumerationAccess::getElementType() belongs to this concept.

*/ @@ -95,8 +95,7 @@ published constants MethodConcept insert...ByIndex(), replace...ByIndex(), or remove...ByIndex(). - The method - XIndexAccess::getCount() + The method com::sun::star::container::XIndexAccess::getCount() also belongs to this concept.

*/ const long INDEXCONTAINER = 32; diff --git a/udkapi/com/sun/star/beans/Optional.idl b/udkapi/com/sun/star/beans/Optional.idl index 08974c9fe969..e7ab5f20e4d3 100644 --- a/udkapi/com/sun/star/beans/Optional.idl +++ b/udkapi/com/sun/star/beans/Optional.idl @@ -25,9 +25,8 @@ module com { module sun { module star { module beans { An optional value of a given type.

This structure is used as the type of interface attributes corresponding - to instances of Property that - have the PropertyAttribute::MAYBEVOID. It might + to instances of com::sun::star::beans::Property that + have the com::sun::star::beans::PropertyAttribute::MAYBEVOID. It might also be useful in other situations, for example as the return type of an interface method.

*/ diff --git a/udkapi/com/sun/star/beans/TolerantPropertySetResultType.idl b/udkapi/com/sun/star/beans/TolerantPropertySetResultType.idl index 950ceecaea75..f5450887f3b2 100644 --- a/udkapi/com/sun/star/beans/TolerantPropertySetResultType.idl +++ b/udkapi/com/sun/star/beans/TolerantPropertySetResultType.idl @@ -42,7 +42,7 @@ constants TolerantPropertySetResultType /** the property is not available.

For example if a - UnknownPropertyException + com::sun::star::beans::UnknownPropertyException was catched.

*/ const short UNKNOWN_PROPERTY = 1; @@ -50,7 +50,7 @@ constants TolerantPropertySetResultType /** the value used with the property is not valid.

For example if a - IllegalArgumentException + com::sun::star::lang::IllegalArgumentException was catched.

*/ const short ILLEGAL_ARGUMENT = 2; @@ -58,7 +58,7 @@ constants TolerantPropertySetResultType /** the property could not be changed at that time.

For example if a - PropertyVetoException + com::sun::star::beans::PropertyVetoException was catched.

*/ const short PROPERTY_VETO = 3; diff --git a/udkapi/com/sun/star/beans/XIntrospection.idl b/udkapi/com/sun/star/beans/XIntrospection.idl index ca19c2785e4f..9fdb736fc66c 100644 --- a/udkapi/com/sun/star/beans/XIntrospection.idl +++ b/udkapi/com/sun/star/beans/XIntrospection.idl @@ -30,8 +30,8 @@ /** allows the inspection of an object's properties and methods.

Important note:An object can only be - inspected completely if it supports the XTypeProvider interface.

+ inspected completely if it supports the com::sun::star::lang::XTypeProvider + interface.

For details see method XIntrospection::inspect().

diff --git a/udkapi/com/sun/star/beans/XIntrospectionAccess.idl b/udkapi/com/sun/star/beans/XIntrospectionAccess.idl index 3e1f8fef2c5c..be325005f117 100644 --- a/udkapi/com/sun/star/beans/XIntrospectionAccess.idl +++ b/udkapi/com/sun/star/beans/XIntrospectionAccess.idl @@ -38,21 +38,19 @@ /** represents the result of an introspection operation done by - the inspect method of - XIntrospection. + the inspect method of XIntrospection.

This interface gives information about an object's properties and methods as detected in the introspection process. It's not possible to access properties or call methods directly using this interface but it provides access to other interfaces to do so. - See - XIntrospectionAccess::queryAdapter()

+ See com::sun::star::beans::XIntrospectionAccess::queryAdapter()

The XExactName interface has to be supported in order to implement inaccurate name access for all objects - which implement the - XNameAccess interface or XPropertySet.

+ which implement the com::sun::star::container::XNameAccess interface + or XPropertySet.

The XMaterialHolder interface has to be supported to give access to the inspected object.

@@ -114,22 +112,20 @@ published interface XIntrospectionAccess: com::sun::star::uno::XInterface the name of the property. @param nPropertyConcepts - zero or more constants of the PropertyConcept - constants group combined by an arithmetical + zero or more constants of the PropertyConcept + constants group combined by an arithmetical or-operation. @throws NoSuchElementException when a property with the demanded name doesn't exist - or if it accords to a wrong PropertyConcept - . + or if it accords to a wrong PropertyConcept. */ com::sun::star::beans::Property getProperty( [in] string aName, [in] long nPropertyConcepts ) raises( com::sun::star::container::NoSuchElementException ); /** allows to ask if a property with the demanded name exists - and if it accords to one of the demanded - PropertyConcepts. + and if it accords to one of the demanded PropertyConcept. @returns `TRUE` if the property exists and accords to one of @@ -140,8 +136,8 @@ published interface XIntrospectionAccess: com::sun::star::uno::XInterface the name of the property. @param nPropertyConcepts - zero or more constants of the PropertyConcept - constants group combined by an arithmetical + zero or more constants of the PropertyConcept + constants group combined by an arithmetical or-operation. */ boolean hasProperty( [in] string aName, @@ -154,8 +150,8 @@ published interface XIntrospectionAccess: com::sun::star::uno::XInterface to the demanded PropertyConcepts. @param nPropertyConcepts - zero or more constants of the PropertyConcept - constants group combined by an arithmetical + zero or more constants of the PropertyConcept + constants group combined by an arithmetical or-operation. */ sequence getProperties( @@ -164,12 +160,11 @@ published interface XIntrospectionAccess: com::sun::star::uno::XInterface /** returns information about a method if a method with the demanded name exists and if it accords to one of the demanded MethodConcepts. The information is - provided as - XIdlMethod. + provided as com::sun::star::reflection::XIdlMethod. @returns - A - XIdlMethod providing information about and + A com::sun::star::reflection::XIdlMethod providing + information about and access to the demanded method if a corresponding method exists. @@ -177,8 +172,8 @@ published interface XIntrospectionAccess: com::sun::star::uno::XInterface the name of the method. @param nMethodConcepts - zero or more constants of the MethodConcept - constants group combined by an arithmetical + zero or more constants of the MethodConcept + constants group combined by an arithmetical or-operation. @throws NoSuchElementException @@ -190,8 +185,7 @@ published interface XIntrospectionAccess: com::sun::star::uno::XInterface raises( com::sun::star::lang::NoSuchMethodException ); /** allows to ask if a method with the demanded name exists - and if it accords to one of the demanded MethodConcept - s. + and if it accords to one of the demanded MethodConcept. @returns `TRUE` if the method exists and accords to one of @@ -202,8 +196,8 @@ published interface XIntrospectionAccess: com::sun::star::uno::XInterface the name of the method. @param nMethodConcepts - zero or more constants of the MethodConcept - constants group combined by an arithmetical + zero or more constants of the MethodConcept + constants group combined by an arithmetical or-operation. */ boolean hasMethod( [in] string aName, @@ -216,8 +210,8 @@ published interface XIntrospectionAccess: com::sun::star::uno::XInterface to the demanded MethodConcepts. @param nMethodConcepts - zero or more constants of the MethodConcept - constants group combined by an arithmetical + zero or more constants of the MethodConcept + constants group combined by an arithmetical or-operation. */ sequence getMethods( @@ -241,36 +235,32 @@ published interface XIntrospectionAccess: com::sun::star::uno::XInterface /** creates an adapter that implements an interface with the specified type. -

To access properties, query for the XPropertySet - interface. If the XPropertySet can +

To access properties, query for the XPropertySet + interface. If the XPropertySet can be queried, the XFastPropertySet interface must be supported too.

If the introspected object implements a name container, - the introspection should return the XNameAccess and XNameContainer - interfaces.

+ the introspection should return the + com::sun::star::container::XNameAccess and + com::sun::star::container::XNameContainer interfaces.

If the introspected object implements an index container, - the introspection should return the XIndexAccess and XIndexContainer - interfaces.

+ the introspection should return the + com::sun::star::container::XIndexAccess and + com::sun::star::container::XIndexContainer interfaces.

If the introspected object implements an enumeration - container, the introspection should return the XEnumerationAccess - interface.

+ container, the introspection should return the + com::sun::star::container::XEnumerationAccess interface.

-

If the introspected object implements the XIdlArray interface, +

If the introspected object implements the + com::sun::star::reflection::XIdlArray interface, the introspection should return this.

To implement inaccurate name access, at all objects, - which implement the - XNameAccess or XPropertySet interface, - the XExactName interface has to be supported. + which implement the com::sun::star::container::XNameAccess or + XPropertySet interface, the XExactName interface has to be supported.

@see com::sun::star::beans::XExactName diff --git a/udkapi/com/sun/star/container/XIdentifierAccess.idl b/udkapi/com/sun/star/container/XIdentifierAccess.idl index b78989c40204..aa527be3682b 100644 --- a/udkapi/com/sun/star/container/XIdentifierAccess.idl +++ b/udkapi/com/sun/star/container/XIdentifierAccess.idl @@ -44,7 +44,7 @@ published interface XIdentifierAccess: com::sun::star::container::XElementAccess @throws com::sun::star::lang::WrappedTargetException If the implementation has internal reasons for exceptions, - then wrap these in a WrappedTargetException + then wrap these in a com::sun::star::lang::WrappedTargetException exception. */ any getByIdentifier( [in] long Identifierr ) diff --git a/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl b/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl index e8363eb1e7c3..f30bc4979c29 100644 --- a/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl +++ b/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl @@ -42,8 +42,8 @@ module com { module sun { module star { module io { such an output stream shall not be closed immediately after one or more calls to com::sun::star::io::XOutputStream::writeBytes(), but the client wants to know as soon as possible whether writing was successful, - then XAsyncOutputMonitor::waitForCompletion + then + com::sun::star::io::XAsyncOutputMonitor::waitForCompletion() should be called after the series of calls to com::sun::star::io::XOutputStream::writeBytes().

@@ -70,9 +70,8 @@ interface XAsyncOutputMonitor { give this guarantee).

@throws com::sun::star::io::IOException - if any previous call to XOutputStream::writeBytes encountered - such an error, but has not yet reported it (in cases where + if any previous call to com::sun::star::io::XOutputStream::writeBytes() + encountered such an error, but has not yet reported it (in cases where writeBytes operates asynchronously). */ void waitForCompletion() raises (IOException); diff --git a/udkapi/com/sun/star/io/XOutputStream.idl b/udkapi/com/sun/star/io/XOutputStream.idl index 7eb260b5c9b3..a8b9defc4661 100644 --- a/udkapi/com/sun/star/io/XOutputStream.idl +++ b/udkapi/com/sun/star/io/XOutputStream.idl @@ -46,8 +46,8 @@ published interface XOutputStream: com::sun::star::uno::XInterface /** flushes out of the stream any data that may exist in buffers.

The semantics of this method are rather vague. See - - XAsyncOutputMonitor::waitForCompletion for a similar method + com::sun::star::io::XAsyncOutputMonitor::waitForCompletion() + for a similar method with very specific semantics, that is useful in certain scenarios.

*/ void flush() diff --git a/udkapi/com/sun/star/io/XTextInputStream.idl b/udkapi/com/sun/star/io/XTextInputStream.idl index 2a8eee42e8bf..e0a821496a06 100644 --- a/udkapi/com/sun/star/io/XTextInputStream.idl +++ b/udkapi/com/sun/star/io/XTextInputStream.idl @@ -72,8 +72,8 @@ published interface XTextInputStream: com::sun::star::io::XInputStream of the stream is reached.

Important: This cannot be detected by asking for an empty string - because that can be a valid return value of - readLine() (if the line is empty) and + because that can be a valid return value of readLine() + (if the line is empty) and readString() (if a delimiter is directly followed by the next one).

diff --git a/udkapi/com/sun/star/io/XTextOutputStream.idl b/udkapi/com/sun/star/io/XTextOutputStream.idl index 102c8d18de97..26eb0e2b4e1c 100644 --- a/udkapi/com/sun/star/io/XTextOutputStream.idl +++ b/udkapi/com/sun/star/io/XTextOutputStream.idl @@ -31,8 +31,8 @@ module com { module sun { module star { module io { character encoding.

This interfaces allows to write strings to a stream. - The character encoding to be used can be set by - setEncoding(). Default encoding is "utf8".

+ The character encoding to be used can be set by + setEncoding(). Default encoding is "utf8".

*/ published interface XTextOutputStream: com::sun::star::io::XOutputStream { diff --git a/udkapi/com/sun/star/java/JavaInitializationException.idl b/udkapi/com/sun/star/java/JavaInitializationException.idl index 1ba0e870452f..e8a3b7aff386 100644 --- a/udkapi/com/sun/star/java/JavaInitializationException.idl +++ b/udkapi/com/sun/star/java/JavaInitializationException.idl @@ -33,10 +33,10 @@ module com { module sun { module star { module java { other exceptions in this namespace which inherit JavaInitializationException. These are:

- JavaDisabledException
- JavaNotConfiguredException
- MissingJavaRuntimeException
- JavaVMCreationFailureException
+ com::sun::star::java::JavaDisabledException
+ com::sun::star::java::JavaNotConfiguredException
+ com::sun::star::java::MissingJavaRuntimeException
+ com::sun::star::java::JavaVMCreationFailureException
@since OOo 1.1.2 */ diff --git a/udkapi/com/sun/star/lang/Locale.idl b/udkapi/com/sun/star/lang/Locale.idl index 8be2fe8462de..f45af42dd83a 100644 --- a/udkapi/com/sun/star/lang/Locale.idl +++ b/udkapi/com/sun/star/lang/Locale.idl @@ -47,7 +47,7 @@ module com { module sun { module star { module lang {

Each implementation that performs locale-sensitive operations allows you to get all the available objects of that type. Use the - XLocale interface to set the locale.

+ com::sun::star::resource::XLocale interface to set the locale.

*/ published struct Locale { diff --git a/udkapi/com/sun/star/lang/XComponent.idl b/udkapi/com/sun/star/lang/XComponent.idl index 7423937bb360..7f03ba6f39ec 100644 --- a/udkapi/com/sun/star/lang/XComponent.idl +++ b/udkapi/com/sun/star/lang/XComponent.idl @@ -81,14 +81,14 @@ published interface XComponent: com::sun::star::uno::XInterface thus for each time a listener is added, it has to be removed.

If this com::sun::star::lang::XComponent is - already disposed when - XComponent::addEventListener is called, the call will not fail + already disposed when + com::sun::star::lang::XComponent::addEventListener() + is called, the call will not fail with a com::sun::star::lang::DisposedException, but the caller will be notified via the com::sun::star::lang::XEventListener::disposing() callback. This callback can occur synchronously within the - XComponent::addEventListener - call.

+ com::sun::star::lang::XComponent::addEventListener() call.

@see XComponent::removeEventListener */ @@ -102,8 +102,9 @@ published interface XComponent: com::sun::star::uno::XInterface thus for each time a listener is added, it has to be removed.

If this com::sun::star::lang::XComponent is - already disposed when - XComponent::removeEventListener is called, the call will not + already disposed when + com::sun::star::lang::XComponent::removeEventListener() + is called, the call will not fail with a com::sun::star::lang::DisposedException, but will rather be ignored silently.

diff --git a/udkapi/com/sun/star/reflection/XIdlField2.idl b/udkapi/com/sun/star/reflection/XIdlField2.idl index 8e1777853b60..5c77f6b0f99a 100644 --- a/udkapi/com/sun/star/reflection/XIdlField2.idl +++ b/udkapi/com/sun/star/reflection/XIdlField2.idl @@ -61,8 +61,7 @@ published interface XIdlField2: com::sun::star::reflection::XIdlMember

When setting an interface attribute raises a non-com::sun::star::uno::RuntimeException, it is - wrapped in a WrappedTargetRuntimeException.

+ wrapped in a com::sun::star::lang::WrappedTargetRuntimeException.

@param obj object instance having member of reflected type @@ -83,8 +82,7 @@ published interface XIdlField2: com::sun::star::reflection::XIdlMember

When setting an interface attribute raises a non-com::sun::star::uno::RuntimeException, it is - wrapped in a WrappedTargetRuntimeException.

+ wrapped in a com::sun::star::lang::WrappedTargetRuntimeException.

@param obj object instance having member of reflected type diff --git a/udkapi/com/sun/star/reflection/XInterfaceTypeDescription2.idl b/udkapi/com/sun/star/reflection/XInterfaceTypeDescription2.idl index 0bc56d7a9ad8..a48e51c66df8 100644 --- a/udkapi/com/sun/star/reflection/XInterfaceTypeDescription2.idl +++ b/udkapi/com/sun/star/reflection/XInterfaceTypeDescription2.idl @@ -40,10 +40,9 @@ interface XInterfaceTypeDescription2: XInterfaceTypeDescription { @returns a sequence of all directly inherited (mandatory) base interface types, in the correct order; each element of the returned sequence will be the - reflection of either an interface type (of type XInterfaceTypeDescription) or - a typedef (of type XIndirectTypeDescription) + reflection of either an interface type (of + type com::sun::star::reflection::XInterfaceTypeDescription) or + a typedef (of type com::sun::star::reflection::XIndirectTypeDescription) that—directly or indirectly—denotes an interface type */ sequence getBaseTypes(); @@ -54,10 +53,9 @@ interface XInterfaceTypeDescription2: XInterfaceTypeDescription { @returns a sequence of all directly inherited optional base interface types, in the correct order; each element of the returned sequence will be the - reflection of either an interface type (of type XInterfaceTypeDescription) or - a typedef (of type XIndirectTypeDescription) + reflection of either an interface type (of type + com::sun::star::reflection::XInterfaceTypeDescription) or + a typedef (of type com::sun::star::reflection::XIndirectTypeDescription) that—directly or indirectly—denotes an interface type */ sequence getOptionalBaseTypes(); diff --git a/udkapi/com/sun/star/reflection/XPublished.idl b/udkapi/com/sun/star/reflection/XPublished.idl index b5e008a40f67..75d5266bdf86 100644 --- a/udkapi/com/sun/star/reflection/XPublished.idl +++ b/udkapi/com/sun/star/reflection/XPublished.idl @@ -43,47 +43,43 @@ module com { module sun { module star { module reflection { (com::sun::star::reflection::XStructTypeDescription), polymorphic struct type templates (com::sun::star::reflection::XStructTypeDescription), - exception types (XCompoundTypeDescription), - interface types (XInterfaceTypeDescription2), - typedefs (XIndirectTypeDescription), - individual constants (XConstantTypeDescription), - constant groups (XConstantsTypeDescription), - single-interface–based services (XServiceTypeDescription2), - accumulation-based services (XServiceTypeDescription2), - interface-based singletons (XSingletonTypeDescription2), - and service-based singletons (XSingletonTypeDescription2) + exception types (com::sun::star::reflection::XCompoundTypeDescription), + interface types (com::sun::star::reflection::XInterfaceTypeDescription2), + typedefs (com::sun::star::reflection::XIndirectTypeDescription), + individual constants + (com::sun::star::reflection::XConstantTypeDescription), + constant groups (com::sun::star::reflection::XConstantsTypeDescription), + single-interface–based services + (com::sun::star::reflection::XServiceTypeDescription2), + accumulation-based services + (com::sun::star::reflection::XServiceTypeDescription2), + interface-based singletons + (com::sun::star::reflection::XSingletonTypeDescription2), + and service-based singletons + (com::sun::star::reflection::XSingletonTypeDescription2) support the notion of being published. Therefore, for an object that represents any such entity, com::sun::star::reflection::XPublished should be supported. -
  • Sequence types (XIndirectTypeDescription), +
  • Sequence types + (com::sun::star::reflection::XIndirectTypeDescription), type parameters of polymorphic struct type templates (com::sun::star::reflection::XTypeDescription), instantiated polymorphic struct types (com::sun::star::reflection::XStructTypeDescription), - attributes of interface types ( - XInterfaceAttributeTypeDescription2), methods of interface types - ( - XInterfaceMethodTypeDescription), properties of - accumulation-based services (XPropertyTypeDescription), + attributes of interface types + (com::sun::star::reflection::XInterfaceAttributeTypeDescription2), + methods of interface types + (com::sun::star::reflection::XInterfaceMethodTypeDescription), + properties of accumulation-based services + (com::sun::star::reflection::XPropertyTypeDescription), deprecated com::sun::star::reflection::XArrayTypeDescriptions, and deprecated com::sun::star::reflection::XUnionTypeDescriptions do - not support the notion of being published. Therefore, for an object that - represents any such entity, + not support the notion of being published. + Therefore, for an object that represents any such entity, com::sun::star::reflection::XPublished should not be supported.
  • diff --git a/udkapi/com/sun/star/reflection/XServiceTypeDescription2.idl b/udkapi/com/sun/star/reflection/XServiceTypeDescription2.idl index afa0e99e271a..223c769c55cf 100644 --- a/udkapi/com/sun/star/reflection/XServiceTypeDescription2.idl +++ b/udkapi/com/sun/star/reflection/XServiceTypeDescription2.idl @@ -50,10 +50,9 @@ interface XServiceTypeDescription2: XServiceTypeDescription { Returns the interface type associated with the service. @return the reflection of the interface type associated with the service - (of type XInterfaceTypeDescription - or, in case of a typedef, XIndirectTypeDescription), + (of type com::sun::star::reflection::XInterfaceTypeDescription + or, in case of a typedef, + com::sun::star::reflection::XIndirectTypeDescription), for a single-interface–based service; for an obsolete, accumulation-based service, `NULL` is returned */ diff --git a/udkapi/com/sun/star/reflection/XSingletonTypeDescription2.idl b/udkapi/com/sun/star/reflection/XSingletonTypeDescription2.idl index 90c32d184a62..e2319c5386d8 100644 --- a/udkapi/com/sun/star/reflection/XSingletonTypeDescription2.idl +++ b/udkapi/com/sun/star/reflection/XSingletonTypeDescription2.idl @@ -47,10 +47,10 @@ interface XSingletonTypeDescription2: XSingletonTypeDescription { Returns the interface type associated with the singleton. @return the reflection of the interface type associated with the - singleton (of type XInterfaceTypeDescription - or, in case of a typedef, XIndirectTypeDescription), + singleton (of type + com::sun::star::reflection::XInterfaceTypeDescription + or, in case of a typedef, + com::sun::star::reflection::XIndirectTypeDescription), for an interface-based singleton; for an obsolete, service-based singleton, `NULL` is returned */ diff --git a/udkapi/com/sun/star/reflection/XStructTypeDescription.idl b/udkapi/com/sun/star/reflection/XStructTypeDescription.idl index 8201ce58d468..a46d6bf033cb 100644 --- a/udkapi/com/sun/star/reflection/XStructTypeDescription.idl +++ b/udkapi/com/sun/star/reflection/XStructTypeDescription.idl @@ -36,26 +36,23 @@ interface XTypeDescription;
    • Polymorphic struct type templates, like Struct<T, U>. For these, - XStructTypeDescription::getTypeParameters returns a non-empty - sequence, while XStructTypeDescription::getTypeArguments returns an empty - sequence.
    • + com::sun::star::reflection::XStructTypeDescription::getTypeParameters() + returns a non-empty sequence, while + com::sun::star::reflection::XStructTypeDescription::getTypeArguments() + returns an empty sequence.
    • Instantiated polymorphic struct types, like Struct<long, hyper>. For these, - XStructTypeDescription::getTypeParameters returns an empty - sequence, while XStructTypeDescription::getTypeArguments returns a non-empty - sequence.
    • + com::sun::star::reflection::XStructTypeDescription::getTypeParameters() + returns an empty sequence, while + com::sun::star::reflection::XStructTypeDescription::getTypeArguments() + returns a non-empty sequence.
    • Plain struct types. For these, both - XStructTypeDescription::getTypeParameters and - XStructTypeDescription::getTypeArguments return an empty - sequence.
    • + com::sun::star::reflection::XStructTypeDescription::getTypeParameters() + and + com::sun::star::reflection::XStructTypeDescription::getTypeArguments() + return an empty sequence.
    @since OOo 2.0 diff --git a/udkapi/com/sun/star/script/XEventAttacherManager.idl b/udkapi/com/sun/star/script/XEventAttacherManager.idl index d2e071f3607d..cb41dbfa266d 100644 --- a/udkapi/com/sun/star/script/XEventAttacherManager.idl +++ b/udkapi/com/sun/star/script/XEventAttacherManager.idl @@ -53,8 +53,8 @@ published interface XEventAttacherManager: com::sun::star::uno::XInterface /** registers several events for an object identified by its index. -

    The result is the same as if the method registerScriptEvent - was called once for each ScriptEventDescriptor +

    The result is the same as if the method registerScriptEvent() + was called once for each ScriptEventDescriptor in the sequence.

    If any object is attached under this index, then this diff --git a/udkapi/com/sun/star/uri/XVndSunStarExpandUrl.idl b/udkapi/com/sun/star/uri/XVndSunStarExpandUrl.idl index 72f87c031565..5a20c9646505 100644 --- a/udkapi/com/sun/star/uri/XVndSunStarExpandUrl.idl +++ b/udkapi/com/sun/star/uri/XVndSunStarExpandUrl.idl @@ -56,8 +56,7 @@ published interface XVndSunStarExpandUrl { the expanded content of this URL. @throws com::sun::star::lang::IllegalArgumentException - if calling XMacroExpander::expandMacros on + if calling com::sun::star::util::XMacroExpander::expandMacros() on expander raises any such exception. */ string expand([in] com::sun::star::util::XMacroExpander expander) -- cgit v1.2.3