1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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
;
29 CEntitiesMap::CEntitiesMap()
34 The number of nodes in this map.
36 sal_Int32 SAL_CALL
CEntitiesMap::getLength()
39 "CEntitiesMap::getLength: not implemented (#i113683#)");
44 Retrieves a node specified by local name
46 Reference
< XNode
> SAL_CALL
47 CEntitiesMap::getNamedItem(OUString
const& /*name*/)
50 "CEntitiesMap::getNamedItem: not implemented (#i113683#)");
51 return Reference
< XNode
>();
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*/)
62 "CEntitiesMap::getNamedItemNS: not implemented (#i113683#)");
63 return Reference
< XNode
>();
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
>();
77 Removes a node specified by name.
79 Reference
< XNode
> SAL_CALL
80 CEntitiesMap::removeNamedItem(OUString
const& /*name*/)
83 "CEntitiesMap::removeNamedItem: not implemented (#i113683#)");
84 return Reference
< XNode
>();
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*/)
95 "CEntitiesMap::removeNamedItemNS: not implemented (#i113683#)");
96 return Reference
< XNode
>();
100 // Adds a node using its nodeName attribute.
102 Reference
< XNode
> SAL_CALL
103 CEntitiesMap::setNamedItem(Reference
< XNode
> const& /*arg*/)
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*/)
117 "CEntitiesMap::setNamedItemNS: not implemented (#i113683#)");
118 return Reference
< XNode
>();
122 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */