diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-04-28 00:44:31 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-04 12:01:05 +0200 |
commit | 928b8640c0d1a9c49249100efbdd70f8c1090b07 (patch) | |
tree | d4f2388c89d137d62bced7b9e8339f964d3632ad /udkapi/com/sun/star/reflection | |
parent | 6e1d239ae04bbb1b639ae8d04c59d3375f867712 (diff) |
*api: convert <TRUE/> <FALSE/> <VOID/> <NULL/>
sed -i 's,<\(TRUE\|FALSE\|VOID\|NULL\)/>,`\1`,g'
Change-Id: Ia4df97ca809b00993530d67203bbe4ba7a072201
Diffstat (limited to 'udkapi/com/sun/star/reflection')
7 files changed, 11 insertions, 11 deletions
diff --git a/udkapi/com/sun/star/reflection/XInterfaceAttributeTypeDescription2.idl b/udkapi/com/sun/star/reflection/XInterfaceAttributeTypeDescription2.idl index 61201800a704..af6f7f911141 100644 --- a/udkapi/com/sun/star/reflection/XInterfaceAttributeTypeDescription2.idl +++ b/udkapi/com/sun/star/reflection/XInterfaceAttributeTypeDescription2.idl @@ -41,7 +41,7 @@ interface XInterfaceAttributeTypeDescription2: /** Returns whether this object reflects a bound attribute. - @return <TRUE/> iff this object reflects a bound attribute + @return `TRUE` iff this object reflects a bound attribute */ boolean isBound(); diff --git a/udkapi/com/sun/star/reflection/XParameter.idl b/udkapi/com/sun/star/reflection/XParameter.idl index 69dfe890038b..a2785c42a149 100644 --- a/udkapi/com/sun/star/reflection/XParameter.idl +++ b/udkapi/com/sun/star/reflection/XParameter.idl @@ -41,7 +41,7 @@ interface XParameter: XMethodParameter { <p>Currently, only service constructors can have rest parameters, and those rest parameters must be in parameters of type `any`.</p> - @return <TRUE/> if and only if this parameter is a rest parameter + @return `TRUE` if and only if this parameter is a rest parameter */ boolean isRestParameter(); }; diff --git a/udkapi/com/sun/star/reflection/XPublished.idl b/udkapi/com/sun/star/reflection/XPublished.idl index a5dc040ff4f8..b5e008a40f67 100644 --- a/udkapi/com/sun/star/reflection/XPublished.idl +++ b/udkapi/com/sun/star/reflection/XPublished.idl @@ -94,7 +94,7 @@ interface XPublished { /** Returns the “published” status of a UNOIDL entity. - @return <TRUE/> if the UNOIDL entity represented by this object is + @return `TRUE` if the UNOIDL entity represented by this object is published */ boolean isPublished(); diff --git a/udkapi/com/sun/star/reflection/XServiceConstructorDescription.idl b/udkapi/com/sun/star/reflection/XServiceConstructorDescription.idl index 6c7fa3987796..2ba4730c5bb4 100644 --- a/udkapi/com/sun/star/reflection/XServiceConstructorDescription.idl +++ b/udkapi/com/sun/star/reflection/XServiceConstructorDescription.idl @@ -36,7 +36,7 @@ interface XServiceConstructorDescription { /** Returns whether the constructor is a default constructor. - @return <TRUE/> if the constructor is a default constructor + @return `TRUE` if the constructor is a default constructor */ boolean isDefaultConstructor(); diff --git a/udkapi/com/sun/star/reflection/XServiceTypeDescription2.idl b/udkapi/com/sun/star/reflection/XServiceTypeDescription2.idl index 46307faca4bf..afa0e99e271a 100644 --- a/udkapi/com/sun/star/reflection/XServiceTypeDescription2.idl +++ b/udkapi/com/sun/star/reflection/XServiceTypeDescription2.idl @@ -40,8 +40,8 @@ interface XServiceTypeDescription2: XServiceTypeDescription { Returns whether this object reflects a single-interface–based service. - @return <TRUE/> if this object reflects a single-interface–based - service, and <FALSE/> if this object reflects an obsolete, + @return `TRUE` if this object reflects a single-interface–based + service, and `FALSE` if this object reflects an obsolete, accumulation-based service */ boolean isSingleInterfaceBased(); @@ -55,7 +55,7 @@ interface XServiceTypeDescription2: XServiceTypeDescription { or, in case of a typedef, <type scope="com::sun::star::reflection">XIndirectTypeDescription</type>), for a single-interface–based service; for an obsolete, - accumulation-based service, <NULL/> is returned + accumulation-based service, `NULL` is returned */ XTypeDescription getInterface(); diff --git a/udkapi/com/sun/star/reflection/XSingletonTypeDescription.idl b/udkapi/com/sun/star/reflection/XSingletonTypeDescription.idl index beb3e3831187..8de061ba8654 100644 --- a/udkapi/com/sun/star/reflection/XSingletonTypeDescription.idl +++ b/udkapi/com/sun/star/reflection/XSingletonTypeDescription.idl @@ -44,7 +44,7 @@ published interface XSingletonTypeDescription : com::sun::star::reflection::XTyp @return the reflection of the service associated with the singleton, for an obsolete, service-based singleton; for an interface-based - singleton, <NULL/> is returned + singleton, `NULL` is returned */ XServiceTypeDescription getService(); diff --git a/udkapi/com/sun/star/reflection/XSingletonTypeDescription2.idl b/udkapi/com/sun/star/reflection/XSingletonTypeDescription2.idl index c892968b7d19..90c32d184a62 100644 --- a/udkapi/com/sun/star/reflection/XSingletonTypeDescription2.idl +++ b/udkapi/com/sun/star/reflection/XSingletonTypeDescription2.idl @@ -38,8 +38,8 @@ interface XSingletonTypeDescription2: XSingletonTypeDescription { /** Returns whether this object reflects an interface-based singleton. - @return <TRUE/> if this object reflects an interface-based singleton, and - <FALSE/> if this object reflects an obsolete, service-based singleton + @return `TRUE` if this object reflects an interface-based singleton, and + `FALSE` if this object reflects an obsolete, service-based singleton */ boolean isInterfaceBased(); @@ -52,7 +52,7 @@ interface XSingletonTypeDescription2: XSingletonTypeDescription { or, in case of a typedef, <type scope="com::sun::star::reflection">XIndirectTypeDescription</type>), for an interface-based singleton; for an obsolete, service-based - singleton, <NULL/> is returned + singleton, `NULL` is returned */ XTypeDescription getInterface(); }; |