1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: Container.idl,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef __com_sun_star_sdbcx_Container_idl__
31 #define __com_sun_star_sdbcx_Container_idl__
33 module com
{ module sun
{ module star
{ module container
{
34 published
interface XNameAccess
;
35 published
interface XIndexAccess
;
36 published
interface XEnumerationAccess
;
39 module com
{ module sun
{ module star
{ module util
{
40 published
interface XRefreshable
;
43 module com
{ module sun
{ module star
{ module sdbcx
{
45 published
interface XDataDescriptorFactory
;
46 published
interface XAppend
;
47 published
interface XDrop
;
50 /** describes every container which is used for data definition. Each
51 container must support access to its elements by the element's name or
52 by the element's position.
55 Simple enumeration must be supported as well.
58 To reflect the changes with the underlying database, a refresh mechanism
59 needs to be supported.
62 A container may support the possibility to add new elements or to drop
63 existing elements. Additions are always done by descriptors which define the
64 properties of the new element.
67 published service Container
69 // gives access to the elements by name.
70 interface com
::sun
::star
::container
::XNameAccess
;
72 // gives access to the elements by index.
73 interface com
::sun
::star
::container
::XIndexAccess
;
75 // used to create an enumeration of the elements.
76 interface com
::sun
::star
::container
::XEnumerationAccess
;
79 /** is optional for implementation. Used to reflect changes.
81 [optional] interface com
::sun
::star
::util
::XRefreshable
;
83 /** optional for implementation. Allows to create descriptor elements which then could be used to append new elements.
85 [optional] interface XDataDescriptorFactory
;
87 /** optional for implementation, provides the possibility of adding
88 a new element to the container.
90 [optional] interface XAppend
;
92 /** optional for implementation, provides the possibility of dropping
93 an element from the container.
95 [optional] interface XDrop
;
98 //=============================================================================
102 /*===========================================================================
103 ===========================================================================*/