service Container in module com::sun::star::sdbcx::

(Global Index)

Syntax

service Container;

Description

describes every container which is used for data definition. Each container must support access to its elements by the element's name or by the element's position.

Simple enumeration must be supported as well.

To reflect the changes with the underlying database, a refresh mechanism needs to be supported.

A container may support the possibility to add new elements or to drop existing elements. Additions are always done by descriptors which define the properties of the new element.

Exported Interfaces

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

Description

is used to access named objects within a container.


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

Description

provides access to the elements of a collection through an index.


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

Description

used to enumerate objects in a container which contains objects.


com::sun::star::util::XRefreshable [ OPTIONAL ]

Description

is optional for implementation. Used to reflect changes.


com::sun::star::sdbcx::XDataDescriptorFactory [ OPTIONAL ]

Description

optional for implementation. Allows to create descriptor elements which then could be used to append new elements.


com::sun::star::sdbcx::XAppend [ OPTIONAL ]

Description

optional for implementation, provides the possibility of adding a new element to the container.


com::sun::star::sdbcx::XDrop [ OPTIONAL ]

Description

optional for implementation, provides the possibility of dropping an element from the container.


Top of Page