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

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

interface XSet

Base Interface
com::sun::star::container::XEnumerationAccess

Description
This is the generic interface for supporting the insertion and removal of elements.
See also
XContainer


Known Services which Export this Interface

com::sun::star::lang::ServiceManager provides a collection of implementations for services.
com::sun::star::reflection::TypeDescriptionManager This service is the central manager supporting the XHierarchicalNameAccessy interface. At runtime there will only be at most a single instance of the service. A manager instance is hooked into the C UNO runtime typelib and lives until the service manager is shut down.
You can manually add a provider by inserting it via the XSet interface.
com::sun::star::lang::ServiceManager provides a collection of implementations for services.
com::sun::star::reflection::TypeDescriptionManager This service is the central manager supporting the XHierarchicalNameAccessy interface. At runtime there will only be at most a single instance of the service. A manager instance is hooked into the C UNO runtime typelib and lives until the service manager is shut down.
You can manually add a provider by inserting it via the XSet interface.

Methods' Summary

has
insert inserts the given element into this container.
remove removes the given element from this container.

Methods' Details

has
 
boolean
has(
[ in ] any aElement );

Returns
true if the given element is a member of this container, otherwise false .
insert
 
void
insert(
[ in ] any aElement )
raises ( com::sun::star::lang::IllegalArgumentException, com::sun::star::container::ElementExistException );

Description
inserts the given element into this container.
remove
 
void
remove(
[ in ] any aElement )
raises ( com::sun::star::lang::IllegalArgumentException, com::sun::star::container::NoSuchElementException );

Description
removes the given element from this container.

Top of Page