1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 #include <entityreference.hxx> 25 26 #include <string.h> 27 28 namespace DOM 29 { CEntityReference(CDocument const & rDocument,::osl::Mutex const & rMutex,xmlNodePtr const pNode)30 CEntityReference::CEntityReference( 31 CDocument const& rDocument, ::osl::Mutex const& rMutex, 32 xmlNodePtr const pNode) 33 : CEntityReference_Base(rDocument, rMutex, 34 NodeType_ENTITY_REFERENCE_NODE, pNode) 35 { 36 } 37 IsChildTypeAllowed(NodeType const nodeType)38 bool CEntityReference::IsChildTypeAllowed(NodeType const nodeType) 39 { 40 switch (nodeType) { 41 case NodeType_ELEMENT_NODE: 42 case NodeType_PROCESSING_INSTRUCTION_NODE: 43 case NodeType_COMMENT_NODE: 44 case NodeType_TEXT_NODE: 45 case NodeType_CDATA_SECTION_NODE: 46 case NodeType_ENTITY_REFERENCE_NODE: 47 return true; 48 default: 49 return false; 50 } 51 } 52 getNodeName()53 OUString SAL_CALL CEntityReference::getNodeName()throw (RuntimeException) 54 { 55 ::osl::MutexGuard const g(m_rMutex); 56 57 OUString aName; 58 if (m_aNodePtr != NULL) 59 { 60 const xmlChar* xName = m_aNodePtr->name; 61 aName = OUString((sal_Char*)xName, strlen((char*)xName), RTL_TEXTENCODING_UTF8); 62 } 63 return aName; 64 } 65 getNodeValue()66 OUString SAL_CALL CEntityReference::getNodeValue() throw (RuntimeException) 67 { 68 return OUString(); 69 } 70 } 71