:: com :: sun :: star :: container ::

interface XHierarchicalName
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XHierarchicalName
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces
Description
specifies the fully qualified name of the object within a hierarchy.

The name is generally globally unique in the hierarchy.

See also
XHierarchicalNameAccess
See also
XNamed

Methods' Summary
getHierarchicalName  
composeHierarchicalName builds the hierarchical name of an object, given a relative name  
Methods' Details
getHierarchicalName
string
getHierarchicalName();

Returns
the fully qualified hierarchical name of the object.
composeHierarchicalName
string
composeHierarchicalName( [in] string  aRelativeName )
raises( ::com::sun::star::lang::IllegalArgumentException,
::com::sun::star::lang::NoSupportException );

Description
builds the hierarchical name of an object, given a relative name

Can be used to find the name of a descendant object in the hierarchy without actually accessing it.

See also
XHierarchicalNameAccess::hasByHierarchicalName
Top of Page