Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: beans ::

interface XExactName

Base Interface
com::sun::star::uno::XInterface

Description
provides a method of changing names for converting an approximate name to an existing name.

One field of application is the conversion of case-insensitive names to the existing names.

Example: A basic interpreter ignores the case of the names. So it must query the XExactName interface and then call the method.

See also
com::sun::star::beans::XPropertySet
See also
com::sun::star::beans::XIntrospectionAccess
See also
com::sun::star::container::XNameAccess


Known Services which Export this Interface

com::sun::star::configuration::HierarchyAccess provides access to a (by name) hierarchy of descendant elements.

Methods' Summary

getExactName

Methods' Details

getExactName
 
string
getExactName(
[ in ] string aApproximateName );

Returns
the exact name for a given aprroximate name.

For example "getExactName" could be returned for "GETEXACTNAME" when "GETEXACTNAME" was used by a case insesitive scripting language.


Top of Page