Methods of Class UnoUrlDescriptor


UnoUrlDescriptor
explicit UnoUrlDescriptor(
const rtl::OUString & rDescriptor );

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

Summary
Construct a descriptor from a string representation.

Parameters
rDescriptor
        The string representation of a descriptor.

        

UnoUrlDescriptor
UnoUrlDescriptor(
const UnoUrlDescriptor & rOther );

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


~UnoUrlDescriptor
~UnoUrlDescriptor();

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


operator=
UnoUrlDescriptor & operator=(
const UnoUrlDescriptor & rOther );

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


getDescriptor
const rtl::OUString & getDescriptor();

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

Summary
Return the string representation of the descriptor.

Return
        A reference to the string representation used to construct this
        descriptor, without any modifications.  The reference is valid for the
        lifetime of this URL object.
     

getName
const rtl::OUString & getName();

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

Summary
Return the name component of the descriptor.

Return
        A reference to the (case insensitive) name, in lower case form.  The
        reference is valid for the lifetime of this URL object.
     

hasParameter
bool hasParameter(
const rtl::OUString & rKey ) const;

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

Summary
Test whether the parameters contain a key.

Parameters
        A (case insensitive) key.

        
Return
        True if the parameters contain a matching key/value pair.
     

getParameter
rtl::OUString getParameter(
const rtl::OUString & rKey ) const;

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

Summary
Return the parameter value for a key.

Parameters
        A (case insensitive) key.

        
Return
        The (case sensitive) value associated with the given key, or an empty
        string if there is no matching key/value pair.
     

Top of Page