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 <documentfragment.hxx>
25 
26 namespace DOM
27 {
CDocumentFragment(CDocument const & rDocument,::osl::Mutex const & rMutex,xmlNodePtr const pNode)28     CDocumentFragment::CDocumentFragment(
29             CDocument const& rDocument, ::osl::Mutex const& rMutex,
30             xmlNodePtr const pNode)
31         : CDocumentFragment_Base(rDocument, rMutex,
32                 NodeType_DOCUMENT_FRAGMENT_NODE, pNode)
33     {
34     }
35 
IsChildTypeAllowed(NodeType const nodeType)36     bool CDocumentFragment::IsChildTypeAllowed(NodeType const nodeType)
37     {
38         switch (nodeType) {
39             case NodeType_ELEMENT_NODE:
40             case NodeType_PROCESSING_INSTRUCTION_NODE:
41             case NodeType_COMMENT_NODE:
42             case NodeType_TEXT_NODE:
43             case NodeType_CDATA_SECTION_NODE:
44             case NodeType_ENTITY_REFERENCE_NODE:
45                 return true;
46             default:
47                 return false;
48         }
49     }
50 
getNodeName()51     OUString SAL_CALL CDocumentFragment::getNodeName()throw (RuntimeException)
52     {
53         return OUString::createFromAscii("#document-fragment");
54     }
getNodeValue()55     OUString SAL_CALL CDocumentFragment::getNodeValue() throw (RuntimeException)
56     {
57         return OUString();
58     }
59 }
60