/************************************************************************* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2009 by Sun Microsystems, Inc. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. ************************************************************************/ #ifndef __com_sun_star_container_XEnumerableMap_idl__ #define __com_sun_star_container_XEnumerableMap_idl__ #include #include #include //============================================================================= module com { module sun { module star { module container { //============================================================================= /** extends XMap with enumeration capabilities.

No assumption should be made about the ordering of the elements returned by the various enumerators. In particular, you cannot assume the elements are returned in the same order as they were inserted. Also, you should not expect the XMap implementation to make use of a possibly existing strict ordering defined on the domain of all possible key values.

You can create enumerators for the keys of the map, its values, and its key-value pairs.

In all cases, you can create an isolated enumerator, which works on a copy of the map's content. Such an iterator is not affected by changes done to the map after creation of the enumerator.

On the contrary, an enumerator which is non-isolated works directly on the map data. This is less expensive than an isolated enumerator, but means that changes to the map while an enumeration is running potentially invalidate your enumerator. The concrete behavior in this case is undefined, it's up to the service implementing the XEnumerableMap interface to specify it in more detail.

Implementations of this interface might decide to support only isolated enumerators, or only non-isolated enumerators. Again, it's up to the service to specify this. Requesting an enumerator type which is not supported will generally result in an NoSupportException being thrown.

*/ interface XEnumerableMap : XMap { /** creates a enumerator for the keys of the map @param Isolated controls whether the newly create enumerator should be isolated from the map. @throws ::com::sun::star::lang::NoSupportException if the specified enumerator method is not supported by the implementation. */ XEnumeration createKeyEnumeration( [in] boolean Isolated ) raises ( ::com::sun::star::lang::NoSupportException ); /** creates a enumerator for the values of the map @param Isolated controls whether the newly create enumerator should be isolated from the map. @throws ::com::sun::star::lang::NoSupportException if the specified enumerator method is not supported by the implementation. */ XEnumeration createValueEnumeration( [in] boolean Isolated ) raises ( ::com::sun::star::lang::NoSupportException ); /** creates a enumerator for the key-value pairs of the map

The elements returned by the enumerator are instances of Pair, holding the key-value-pairs which are part of the map.

@param Isolated controls whether the newly create enumerator should be isolated from the map. @throws ::com::sun::star::lang::NoSupportException if the specified enumerator method is not supported by the implementation. */ XEnumeration createElementEnumeration( [in] boolean Isolated ) raises ( ::com::sun::star::lang::NoSupportException ); }; //============================================================================= }; }; }; }; //============================================================================= #endif