Methods of Class TypeDescription


TypeDescription
TypeDescription(
typelib_TypeDescription * pTypeDescr = 0 ) throw();

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO YES NO

Summary
Constructor:
Parameters
pTypeDescr
a type description
    

TypeDescription
TypeDescription(
typelib_TypeDescriptionReference * pTypeDescrRef ) throw();

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO YES NO

Summary
Constructor:
Parameters
pTypeDescrRef
a type description reference
    

TypeDescription
TypeDescription(
const ::com::sun::star::uno::Type & rType ) throw();

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO YES NO

Summary
Constructor:
Parameters
rType
a type
    

TypeDescription
TypeDescription(
const TypeDescription & rDescr ) throw();

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO YES NO

Summary
Copy constructor:
Parameters
rDescr
another TypeDescription
    

TypeDescription
TypeDescription(
rtl_uString * pTypeName ) throw();

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO YES NO

Summary
Constructor:
Parameters
pTypeName
a type name
    

TypeDescription
TypeDescription(
const ::rtl::OUString & rTypeName ) throw();

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO YES NO

Summary
Constructor:
Parameters
rTypeName
a type name
    

~TypeDescription
~TypeDescription() throw();

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO YES NO

Summary
Destructor: releases type description

operator=
TypeDescription & operator=(
typelib_TypeDescription * pTypeDescr ) throw();

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO YES NO

Summary
Assignment operator: acquires given type description and releases a set one.
Parameters
pTypeDescr
another type description
        
Return
this TypeDescription

operator=
TypeDescription & operator=(
const TypeDescription & rTypeDescr ) throw();

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO YES NO

Summary
Assignment operator: acquires given type description and releases a set one.
Parameters
rTypeDescr
another type description
        
Return
this TypeDescription

equals
sal_Bool equals(
const typelib_TypeDescription * pTypeDescr ) const throw();

virtual abstract const volatile template static inline C-linkage
NO NO YES NO NO NO YES NO

Summary
Tests whether two type descriptions are equal.
Parameters
pTypeDescr
another type description
        
Return
true, if both type descriptions are equal, false otherwise

equals
sal_Bool equals(
const TypeDescription & rTypeDescr ) const throw();

virtual abstract const volatile template static inline C-linkage
NO NO YES NO NO NO YES NO

Summary
Tests whether two type descriptions are equal.
Parameters
rTypeDescr
another type description
        
Return
true, if both type descriptions are equal, false otherwise

makeComplete
void makeComplete() throw();

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO YES NO

Summary
Makes stored type description complete.

get
typelib_TypeDescription * get() throw();

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO YES NO

Summary
Gets the UNacquired type description pointer.
Return
stored pointer of type description

is
sal_Bool is() throw();

virtual abstract const volatile template static inline C-linkage
NO NO NO NO NO NO YES NO

Summary
Tests if a type description is set.
Return
true, if a type description is set, false otherwise

Top of Page