1. /*
  2. * The Apache Software License, Version 1.1
  3. *
  4. *
  5. * Copyright (c) 2000 The Apache Software Foundation. All rights
  6. * reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. *
  12. * 1. Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions and the following disclaimer.
  14. *
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in
  17. * the documentation and/or other materials provided with the
  18. * distribution.
  19. *
  20. * 3. The end-user documentation included with the redistribution,
  21. * if any, must include the following acknowledgment:
  22. * "This product includes software developed by the
  23. * Apache Software Foundation (http://www.apache.org/)."
  24. * Alternately, this acknowledgment may appear in the software itself,
  25. * if and wherever such third-party acknowledgments normally appear.
  26. *
  27. * 4. The names "Crimson" and "Apache Software Foundation" must
  28. * not be used to endorse or promote products derived from this
  29. * software without prior written permission. For written
  30. * permission, please contact apache@apache.org.
  31. *
  32. * 5. Products derived from this software may not be called "Apache",
  33. * nor may "Apache" appear in their name, without prior written
  34. * permission of the Apache Software Foundation.
  35. *
  36. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  37. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  38. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  39. * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  40. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  41. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  42. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  43. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  44. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  45. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  46. * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  47. * SUCH DAMAGE.
  48. * ====================================================================
  49. *
  50. * This software consists of voluntary contributions made by many
  51. * individuals on behalf of the Apache Software Foundation and was
  52. * originally based on software copyright (c) 1999, Sun Microsystems, Inc.,
  53. * http://www.sun.com. For more information on the Apache Software
  54. * Foundation, please see <http://www.apache.org/>.
  55. */
  56. package org.apache.crimson.tree;
  57. import org.w3c.dom.*;
  58. import org.apache.crimson.util.XmlNames;
  59. /**
  60. * This class implements the DOM <em>DOMImplementation</em> interface.
  61. *
  62. * @author Edwin Goei
  63. * @version $Revision: 1.5 $
  64. */
  65. public class DOMImplementationImpl implements DOMImplementation
  66. {
  67. /** DOM implementation singleton. */
  68. private static DOMImplementationImpl singleton =
  69. new DOMImplementationImpl();
  70. /** NON-DOM: Obtain and return the single shared object */
  71. public static DOMImplementation getDOMImplementation() {
  72. return singleton;
  73. }
  74. public DOMImplementationImpl() {
  75. // No-op
  76. }
  77. /**
  78. * Test if the DOM implementation implements a specific feature.
  79. */
  80. public boolean hasFeature(String feature, String version) {
  81. return hasFeature0(feature, version);
  82. }
  83. /**
  84. * Reports on features that this implementation supports. Allows code to
  85. * be shared with NodeBase.supports().
  86. */
  87. static boolean hasFeature0(String feature, String version) {
  88. if ("XML".equalsIgnoreCase(feature)
  89. || "Core".equalsIgnoreCase(feature)) {
  90. if (version == null || "".equals(version) || "2.0".equals(version)
  91. || "1.0".equals(version)) {
  92. return true;
  93. }
  94. }
  95. return false;
  96. }
  97. /**
  98. * Creates an empty <code>DocumentType</code> node.
  99. */
  100. public DocumentType createDocumentType(String qualifiedName,
  101. String publicId,
  102. String systemId)
  103. {
  104. if (!XmlNames.isName(qualifiedName)) {
  105. throw new DomEx(DOMException.INVALID_CHARACTER_ERR);
  106. }
  107. if (!XmlNames.isQualifiedName(qualifiedName)) {
  108. throw new DomEx(DOMException.NAMESPACE_ERR);
  109. }
  110. // Note that DOM2 specifies that ownerDocument = null
  111. return new Doctype(qualifiedName, publicId, systemId,
  112. /* internalSubset */ null);
  113. }
  114. /**
  115. * Creates an XML <code>Document</code> object of the specified type with
  116. * its document element.
  117. */
  118. public Document createDocument(String namespaceURI,
  119. String qualifiedName,
  120. DocumentType doctype)
  121. throws DOMException
  122. {
  123. // Create document and if doctype is specified appends it to the
  124. // document. Note: WRONG_DOCUMENT_ERR is checked by appendChild().
  125. Document doc = new XmlDocument();
  126. if (doctype != null) {
  127. doc.appendChild(doctype);
  128. }
  129. // Create document element and append it
  130. // Note: name exceptions are checked by createElementNS()
  131. Element docElement = doc.createElementNS(namespaceURI, qualifiedName);
  132. doc.appendChild(docElement);
  133. return doc;
  134. }
  135. }