| /* | ||
| * Copyright 2001-2004 (C) MetaStuff, Ltd. All Rights Reserved. | ||
| * | ||
| * This software is open source. | ||
| * See the bottom of this file for the licence. | ||
| * | ||
| * $Id: DatatypeElementFactory.java,v 1.7 2004/06/25 08:03:34 maartenc Exp $ | ||
| */ | ||
| package org.dom4j.datatype; | ||
| import com.sun.msv.datatype.xsd.XSDatatype; | ||
| import java.util.HashMap; | ||
| import java.util.Map; | ||
| import org.dom4j.Attribute; | ||
| import org.dom4j.DocumentFactory; | ||
| import org.dom4j.Element; | ||
| import org.dom4j.QName; | ||
| /** <p><code>DatatypeElementFactory</code> is a factory for a specific Element | ||
| * in an XML Schema.</p> | ||
| * | ||
| * @author <a href="mailto:jstrachan@apache.org">James Strachan</a> | ||
| * @author Yuxin Ruan | ||
| * @version $Revision: 1.7 $ | ||
| */ | ||
| public class DatatypeElementFactory extends DocumentFactory { | ||
| private QName elementQName; | ||
| 30x | public DatatypeElementFactory(QName elementQName) { | |
| 30x | this.elementQName = elementQName; | |
| 30x | } | |
| /** Cache of <code>XSDatatype</code> instances per | ||
| * Attribute <code>QName</code> */ | ||
| 30x | private Map attributeXSDatatypes = new HashMap(); | |
| /** Cache of <code>XSDatatype</code> instances per | ||
| * child Element <code>QName</code> */ | ||
| 30x | private Map childrenXSDatatypes = new HashMap(); | |
| /** @return the QName this element factory is associated with */ | ||
| public QName getQName() { | ||
| 0x | return elementQName; | |
| } | ||
| /** @return the <code>XSDatatype</code> associated with the given Attribute | ||
| * QName | ||
| */ | ||
| public XSDatatype getAttributeXSDatatype( QName attributeQName ) { | ||
| 16x | return (XSDatatype) attributeXSDatatypes.get( attributeQName ); | |
| } | ||
| /** Registers the given <code>XSDatatype</code> for the given | ||
| * <attribute> QNames | ||
| */ | ||
| public void setAttributeXSDatatype( QName attributeQName, XSDatatype dataType ) { | ||
| 8x | attributeXSDatatypes.put( attributeQName, dataType ); | |
| 8x | } | |
| /** @return the <code>XSDatatype</code> associated with the given child | ||
| * Element QName | ||
| */ | ||
| public XSDatatype getChildElementXSDatatype( QName qname ) { | ||
| 30x | return (XSDatatype) childrenXSDatatypes.get( qname ); | |
| } | ||
| public void setChildElementXSDatatype( QName qname, XSDatatype dataType ) { | ||
| 16x | childrenXSDatatypes.put( qname, dataType ); | |
| 16x | } | |
| // DocumentFactory methods | ||
| //------------------------------------------------------------------------- | ||
| public Element createElement(QName qname) { | ||
| //the element may have its own element factory! | ||
| //use factory from the qname for datatype | ||
| 16x | XSDatatype dataType = getChildElementXSDatatype( qname ); | |
| 2/2 16x | if ( dataType != null ) { | |
| 2x | return new DatatypeElement(qname, dataType); | |
| } | ||
| 14x | DocumentFactory documentFactory = qname.getDocumentFactory(); | |
| 1/2 14x | if ( documentFactory instanceof DatatypeElementFactory ) { | |
| 14x | DatatypeElementFactory factory = (DatatypeElementFactory) documentFactory; | |
| 14x | dataType = factory.getChildElementXSDatatype( qname ); | |
| 1/2 14x | if ( dataType != null ) { | |
| 14x | return new DatatypeElement(qname, dataType); | |
| } | ||
| } | ||
| 0x | return super.createElement( qname ); | |
| } | ||
| public Attribute createAttribute(Element owner, QName qname, String value) { | ||
| 16x | XSDatatype dataType = getAttributeXSDatatype(qname); | |
| 2/2 16x | if ( dataType == null ) { | |
| 8x | return super.createAttribute( owner, qname, value ); | |
| } | ||
| else { | ||
| 8x | return new DatatypeAttribute( qname, dataType, value ); | |
| } | ||
| } | ||
| } | ||
| /* | ||
| * 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: DatatypeElementFactory.java,v 1.7 2004/06/25 08:03:34 maartenc Exp $ | ||
| */ |