Bump version to 24.04.3.4
[LibreOffice.git] / unoxml / source / dom / entitiesmap.cxx
blobd5c65e7c2d0594dac2a02f0a16b16e9746152b81
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include "entitiesmap.hxx"
22 #include <osl/diagnose.h>
24 using namespace css::uno;
25 using namespace css::xml::dom;
27 namespace DOM
29 CEntitiesMap::CEntitiesMap()
33 /**
34 The number of nodes in this map.
36 sal_Int32 SAL_CALL CEntitiesMap::getLength()
38 OSL_ENSURE(false,
39 "CEntitiesMap::getLength: not implemented (#i113683#)");
40 return 0;
43 /**
44 Retrieves a node specified by local name
46 Reference< XNode > SAL_CALL
47 CEntitiesMap::getNamedItem(OUString const& /*name*/)
49 OSL_ENSURE(false,
50 "CEntitiesMap::getNamedItem: not implemented (#i113683#)");
51 return Reference< XNode >();
54 /**
55 Retrieves a node specified by local name and namespace URI.
57 Reference< XNode > SAL_CALL
58 CEntitiesMap::getNamedItemNS(
59 OUString const& /*namespaceURI*/, OUString const& /*localName*/)
61 OSL_ENSURE(false,
62 "CEntitiesMap::getNamedItemNS: not implemented (#i113683#)");
63 return Reference< XNode >();
66 /**
67 Returns the indexth item in the map.
69 Reference< XNode > SAL_CALL
70 CEntitiesMap::item(sal_Int32 /*index*/)
72 OSL_ENSURE(false, "CEntitiesMap::item: not implemented (#i113683#)");
73 return Reference< XNode >();
76 /**
77 Removes a node specified by name.
79 Reference< XNode > SAL_CALL
80 CEntitiesMap::removeNamedItem(OUString const& /*name*/)
82 OSL_ENSURE(false,
83 "CEntitiesMap::removeNamedItem: not implemented (#i113683#)");
84 return Reference< XNode >();
87 /**
88 // Removes a node specified by local name and namespace URI.
90 Reference< XNode > SAL_CALL
91 CEntitiesMap::removeNamedItemNS(
92 OUString const& /*namespaceURI*/, OUString const& /*localName*/)
94 OSL_ENSURE(false,
95 "CEntitiesMap::removeNamedItemNS: not implemented (#i113683#)");
96 return Reference< XNode >();
99 /**
100 // Adds a node using its nodeName attribute.
102 Reference< XNode > SAL_CALL
103 CEntitiesMap::setNamedItem(Reference< XNode > const& /*arg*/)
105 OSL_ENSURE(false,
106 "CEntitiesMap::setNamedItem: not implemented (#i113683#)");
107 return Reference< XNode >();
111 Adds a node using its namespaceURI and localName.
113 Reference< XNode > SAL_CALL
114 CEntitiesMap::setNamedItemNS(Reference< XNode > const& /*arg*/)
116 OSL_ENSURE(false,
117 "CEntitiesMap::setNamedItemNS: not implemented (#i113683#)");
118 return Reference< XNode >();
122 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */