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

interface XHierarchicalNameContainer
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XHierarchicalNameAccess
    |
    +-XHierarchicalNameReplace
       |
       +-XHierarchicalNameContainer
Description
* Insertion and removal of hierarchical elements.

Methods' Summary
insertByHierarchicalName inserts the element at the specified name.
removeByHierarchicalName removes the element at the specified name.
Methods' Details
insertByHierarchicalName
void
insertByHierarchicalName(
 
[in] string
[in] any 

raises(

 
aName,
aElement ) 
::com::sun::star::lang::IllegalArgumentException,
ElementExistException,
::com::sun::star::lang::WrappedTargetException );

Description
inserts the element at the specified name.
removeByHierarchicalName
void
removeByHierarchicalName(
 
[in] string 

raises(

 
Name ) 
NoSuchElementException,
::com::sun::star::lang::WrappedTargetException );

Description
removes the element at the specified name.
Top of Page