Project dom4j 1.5.2 [5/2/05 10:13 PM]
 
Coverage - org/dom4j/dom/DOMDocumentFactory.java
  /*
   * Copyright 2001-2004 (C) MetaStuff, Ltd. All Rights Reserved.
   *
   * This software is open source.
   * See the bottom of this file for the licence.
   *
   * $Id: DOMDocumentFactory.java,v 1.17 2004/06/25 08:03:35 maartenc Exp $
   */
 
  package org.dom4j.dom;
 
  import java.util.Map;
 
  import org.dom4j.Attribute;
  import org.dom4j.CDATA;
  import org.dom4j.Comment;
  import org.dom4j.Document;
  import org.dom4j.DocumentFactory;
  import org.dom4j.DocumentType;
  import org.dom4j.Element;
  import org.dom4j.Entity;
  import org.dom4j.Namespace;
  import org.dom4j.ProcessingInstruction;
  import org.dom4j.QName;
  import org.dom4j.Text;
 
  /** <p><code>DOMDocumentFactory</code> is a factory of DOM4J objects
    * which implement the W3C DOM API.</p>
    *
    * @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
    * @version $Revision: 1.17 $
    */
2x   public class DOMDocumentFactory extends DocumentFactory implements org.w3c.dom.DOMImplementation {
 
      /** The Singleton instance */
      //protected static transient DOMDocumentFactory singleton = new DOMDocumentFactory();
      private final static ThreadLocal singlePerThread=new ThreadLocal();
      private static String domDocumentFactoryClassName=null;
 
 
 
      /** <p>Access to the singleton instance of this factory.</p>
        *
        * @return the default singleon instance
        */
      public static DocumentFactory getInstance() {
14x         DOMDocumentFactory fact =(DOMDocumentFactory)singlePerThread.get();
2/2 14x          if (fact==null) {
2x            fact=  new DOMDocumentFactory();
2x            singlePerThread.set(fact);
          }
1/2 14x          if (fact==null){
         }
14x          return fact;
      }
 
 
      // Factory methods
 
      public Document createDocument() {
10x           DOMDocument answer = new DOMDocument();
10x           answer.setDocumentFactory( this );
10x           return answer;
      }
 
      public DocumentType createDocType(String name, String publicId, String systemId) {
0x           return new DOMDocumentType( name, publicId, systemId );
      }
 
      public Element createElement(QName qname) {
280x           return new DOMElement(qname);
      }
 
      public Element createElement(QName qname, int attributeCount) {
0x           return new DOMElement(qname, attributeCount);
      }
 
      public Attribute createAttribute(Element owner, QName qname, String value) {
212x           return new DOMAttribute(qname, value);
      }
 
      public CDATA createCDATA(String text) {
0x           return new DOMCDATA(text);
      }
 
      public Comment createComment(String text) {
24x           return new DOMComment(text);
      }
 
      public Text createText(String text) {
584x           return new DOMText(text);
      }
 
      public Entity createEntity(String name) {
0x           return new DOMEntityReference(name);
      }
 
      public Entity createEntity(String name, String text) {
0x           return new DOMEntityReference(name, text);
      }
 
      public Namespace createNamespace(String prefix, String uri) {
316x           return new DOMNamespace(prefix, uri);
      }
 
 
      public ProcessingInstruction createProcessingInstruction(String target, String data) {
24x           return new DOMProcessingInstruction(target, data);
      }
 
      public ProcessingInstruction createProcessingInstruction(String target, Map data) {
0x           return new DOMProcessingInstruction(target, data);
      }
 
      // org.w3c.dom.DOMImplementation interface
 
      public boolean hasFeature(String feature, String version) {
0/4 0x           if ("XML".equalsIgnoreCase(feature) || "Core".equalsIgnoreCase(feature)) {
0/8 0x             return (version == null || version.length() == 0 || "1.0".equals(version) || "2.0".equals(version));
          }
0x           return false;
      }
 
      public org.w3c.dom.DocumentType createDocumentType(
          String qualifiedName, String publicId, String systemId
      ) throws org.w3c.dom.DOMException {
0x           return new DOMDocumentType( qualifiedName, publicId, systemId );
      }
 
      public org.w3c.dom.Document createDocument(
          String namespaceURI,
          String qualifiedName,
          org.w3c.dom.DocumentType documentType
      ) throws org.w3c.dom.DOMException {
          DOMDocument document;
0/2 0x           if (documentType != null) {
0x               DOMDocumentType docType = asDocumentType( documentType );
0x               document = new DOMDocument( docType );
          } else {
0x               document = new DOMDocument();
          }
 
0x           document.addElement( createQName( qualifiedName, namespaceURI ) );
0x           return document;
     }
 
 
      // Implementation methods
 
      protected DOMDocumentType asDocumentType( org.w3c.dom.DocumentType documentType ) {
0/2 0x           if ( documentType instanceof DOMDocumentType ) {
0x               return (DOMDocumentType) documentType;
          }
          else {
0x               return new DOMDocumentType(
                  documentType.getName(),
                  documentType.getPublicId(),
                  documentType.getSystemId()
              );
          }
      }
 
  }
 
 
 
 
  /*
   * Redistribution and use of this software and associated documentation
   * ("Software"), with or without modification, are permitted provided
   * that the following conditions are met:
   *
   * 1. Redistributions of source code must retain copyright
   *    statements and notices.  Redistributions must also contain a
   *    copy of this document.
   *
   * 2. Redistributions in binary form must reproduce the
   *    above copyright notice, this list of conditions and the
   *    following disclaimer in the documentation and/or other
   *    materials provided with the distribution.
   *
   * 3. The name "DOM4J" must not be used to endorse or promote
   *    products derived from this Software without prior written
   *    permission of MetaStuff, Ltd.  For written permission,
   *    please contact dom4j-info@metastuff.com.
   *
   * 4. Products derived from this Software may not be called "DOM4J"
   *    nor may "DOM4J" appear in their names without prior written
   *    permission of MetaStuff, Ltd. DOM4J is a registered
   *    trademark of MetaStuff, Ltd.
   *
   * 5. Due credit should be given to the DOM4J Project - 
   *    http://www.dom4j.org
   *
   * THIS SOFTWARE IS PROVIDED BY METASTUFF, LTD. AND CONTRIBUTORS
   * ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
   * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
   * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
   * METASTUFF, LTD. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
   * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
   * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
   * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
   * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
   * OF THE POSSIBILITY OF SUCH DAMAGE.
   *
   * Copyright 2001-2004 (C) MetaStuff, Ltd. All Rights Reserved.
   *
   * $Id: DOMDocumentFactory.java,v 1.17 2004/06/25 08:03:35 maartenc Exp $
   */