src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/jaxb/JAXBStructuredType.java

changeset 286
f50545b5e2f1
child 368
0989ad8c0860
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/jaxb/JAXBStructuredType.java	Tue Mar 06 16:09:35 2012 -0800
     1.3 @@ -0,0 +1,138 @@
     1.4 +/*
     1.5 + * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.  Oracle designates this
    1.11 + * particular file as subject to the "Classpath" exception as provided
    1.12 + * by Oracle in the LICENSE file that accompanied this code.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 + * version 2 for more details (a copy is included in the LICENSE file that
    1.18 + * accompanied this code).
    1.19 + *
    1.20 + * You should have received a copy of the GNU General Public License version
    1.21 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.22 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 + *
    1.24 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.25 + * or visit www.oracle.com if you need additional information or have any
    1.26 + * questions.
    1.27 + */
    1.28 +
    1.29 +package com.sun.tools.internal.ws.processor.model.jaxb;
    1.30 +
    1.31 +import com.sun.tools.internal.ws.processor.model.ModelException;
    1.32 +import com.sun.tools.internal.ws.processor.model.java.JavaStructureType;
    1.33 +
    1.34 +import javax.xml.namespace.QName;
    1.35 +import java.util.*;
    1.36 +
    1.37 +/**
    1.38 + * Top-level binding between JAXB generated Java type
    1.39 + * and XML Schema element declaration.
    1.40 + *
    1.41 + * @author
    1.42 + *     Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
    1.43 + */
    1.44 +public class JAXBStructuredType extends JAXBType {
    1.45 +
    1.46 +    public JAXBStructuredType(JAXBType jaxbType){
    1.47 +        super(jaxbType);
    1.48 +    }
    1.49 +
    1.50 +    public JAXBStructuredType() {}
    1.51 +
    1.52 +    public JAXBStructuredType(QName name) {
    1.53 +        this(name, null);
    1.54 +    }
    1.55 +
    1.56 +    public JAXBStructuredType(QName name, JavaStructureType javaType) {
    1.57 +        super(name, javaType);
    1.58 +    }
    1.59 +
    1.60 +    public void add(JAXBElementMember m) {
    1.61 +        if (_elementMembersByName.containsKey(m.getName())) {
    1.62 +            throw new ModelException("model.uniqueness");
    1.63 +        }
    1.64 +        _elementMembers.add(m);
    1.65 +        if (m.getName() != null) {
    1.66 +            _elementMembersByName.put(m.getName().getLocalPart(), m);
    1.67 +        }
    1.68 +    }
    1.69 +
    1.70 +    public Iterator getElementMembers() {
    1.71 +        return _elementMembers.iterator();
    1.72 +    }
    1.73 +
    1.74 +    public int getElementMembersCount() {
    1.75 +        return _elementMembers.size();
    1.76 +    }
    1.77 +
    1.78 +    /* serialization */
    1.79 +    public List getElementMembersList() {
    1.80 +        return _elementMembers;
    1.81 +    }
    1.82 +
    1.83 +    /* serialization */
    1.84 +    public void setElementMembersList(List l) {
    1.85 +        _elementMembers = l;
    1.86 +    }
    1.87 +
    1.88 +    public void addSubtype(JAXBStructuredType type) {
    1.89 +        if (_subtypes == null) {
    1.90 +            _subtypes = new HashSet();
    1.91 +        }
    1.92 +        _subtypes.add(type);
    1.93 +        type.setParentType(this);
    1.94 +    }
    1.95 +
    1.96 +    public Iterator getSubtypes() {
    1.97 +        if (_subtypes != null) {
    1.98 +            return _subtypes.iterator();
    1.99 +        }
   1.100 +        return null;
   1.101 +    }
   1.102 +
   1.103 +    /* (non-Javadoc)
   1.104 +     * @see JAXBType#isUnwrapped()
   1.105 +     */
   1.106 +    public boolean isUnwrapped() {
   1.107 +        return true;
   1.108 +    }
   1.109 +    /* serialization */
   1.110 +    public Set getSubtypesSet() {
   1.111 +        return _subtypes;
   1.112 +    }
   1.113 +
   1.114 +    /* serialization */
   1.115 +    public void setSubtypesSet(Set s) {
   1.116 +        _subtypes = s;
   1.117 +    }
   1.118 +
   1.119 +    public void setParentType(JAXBStructuredType parent) {
   1.120 +        if (_parentType != null &&
   1.121 +            parent != null &&
   1.122 +            !_parentType.equals(parent)) {
   1.123 +
   1.124 +            throw new ModelException("model.parent.type.already.set",
   1.125 +                new Object[] { getName().toString(),
   1.126 +                    _parentType.getName().toString(),
   1.127 +                    parent.getName().toString()});
   1.128 +        }
   1.129 +        this._parentType = parent;
   1.130 +    }
   1.131 +
   1.132 +    public JAXBStructuredType getParentType() {
   1.133 +        return _parentType;
   1.134 +    }
   1.135 +
   1.136 +
   1.137 +    private List _elementMembers = new ArrayList();
   1.138 +    private Map _elementMembersByName = new HashMap();
   1.139 +    private Set _subtypes = null;
   1.140 +    private JAXBStructuredType _parentType = null;
   1.141 +}

mercurial