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 #include "documenttype.hxx"
26 using namespace css::uno
;
27 using namespace css::xml::dom
;
31 CEntitiesMap::CEntitiesMap()
36 The number of nodes in this map.
38 sal_Int32 SAL_CALL
CEntitiesMap::getLength()
41 "CEntitiesMap::getLength: not implemented (#i113683#)");
46 Retrieves a node specified by local name
48 Reference
< XNode
> SAL_CALL
49 CEntitiesMap::getNamedItem(OUString
const& /*name*/)
52 "CEntitiesMap::getNamedItem: not implemented (#i113683#)");
53 return Reference
< XNode
>();
57 Retrieves a node specified by local name and namespace URI.
59 Reference
< XNode
> SAL_CALL
60 CEntitiesMap::getNamedItemNS(
61 OUString
const& /*namespaceURI*/, OUString
const& /*localName*/)
64 "CEntitiesMap::getNamedItemNS: not implemented (#i113683#)");
65 return Reference
< XNode
>();
69 Returns the indexth item in the map.
71 Reference
< XNode
> SAL_CALL
72 CEntitiesMap::item(sal_Int32
/*index*/)
74 OSL_ENSURE(false, "CEntitiesMap::item: not implemented (#i113683#)");
75 return Reference
< XNode
>();
79 Removes a node specified by name.
81 Reference
< XNode
> SAL_CALL
82 CEntitiesMap::removeNamedItem(OUString
const& /*name*/)
85 "CEntitiesMap::removeNamedItem: not implemented (#i113683#)");
86 return Reference
< XNode
>();
90 // Removes a node specified by local name and namespace URI.
92 Reference
< XNode
> SAL_CALL
93 CEntitiesMap::removeNamedItemNS(
94 OUString
const& /*namespaceURI*/, OUString
const& /*localName*/)
97 "CEntitiesMap::removeNamedItemNS: not implemented (#i113683#)");
98 return Reference
< XNode
>();
102 // Adds a node using its nodeName attribute.
104 Reference
< XNode
> SAL_CALL
105 CEntitiesMap::setNamedItem(Reference
< XNode
> const& /*arg*/)
108 "CEntitiesMap::setNamedItem: not implemented (#i113683#)");
109 return Reference
< XNode
>();
113 Adds a node using its namespaceURI and localName.
115 Reference
< XNode
> SAL_CALL
116 CEntitiesMap::setNamedItemNS(Reference
< XNode
> const& /*arg*/)
119 "CEntitiesMap::setNamedItemNS: not implemented (#i113683#)");
120 return Reference
< XNode
>();
124 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */