1 57 58 package org.xquark.xpath.datamodel.xerces.dom; 59 60 import org.w3c.dom.DocumentFragment ; 61 import org.w3c.dom.Node ; 62 63 103 public class DocumentFragmentImpl 104 extends ParentNode 105 implements DocumentFragment { 106 107 111 112 static final long serialVersionUID = -7596449967279236746L; 113 114 118 119 public DocumentFragmentImpl(DocumentImpl ownerDoc) { 120 super(ownerDoc); 121 } 122 123 124 public DocumentFragmentImpl() {} 125 126 130 134 public short getNodeType() { 135 return Node.DOCUMENT_FRAGMENT_NODE; 136 } 137 138 139 public String getNodeName() { 140 return "#document-fragment"; 141 } 142 143 } | Popular Tags |