src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/ct/MixedComplexTypeBuilder.java

changeset 0
373ffda63c9a
equal deleted inserted replaced
-1:000000000000 0:373ffda63c9a
1 /*
2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26 package com.sun.tools.internal.xjc.reader.xmlschema.ct;
27
28 import com.sun.tools.internal.xjc.model.CBuiltinLeafInfo;
29 import com.sun.tools.internal.xjc.model.CClass;
30 import com.sun.tools.internal.xjc.model.CPropertyInfo;
31 import com.sun.tools.internal.xjc.reader.RawTypeSet;
32 import com.sun.tools.internal.xjc.reader.xmlschema.RawTypeSetBuilder;
33 import com.sun.tools.internal.xjc.reader.xmlschema.bindinfo.BIProperty;
34 import static com.sun.tools.internal.xjc.reader.xmlschema.ct.ComplexTypeBindingMode.FALLBACK_CONTENT;
35 import com.sun.xml.internal.xsom.XSComplexType;
36 import com.sun.xml.internal.xsom.XSContentType;
37 import com.sun.xml.internal.xsom.XSType;
38 import java.util.List;
39
40 /**
41 * @author Kohsuke Kawaguchi
42 */
43 final class MixedComplexTypeBuilder extends CTBuilder {
44
45 public boolean isApplicable(XSComplexType ct) {
46 XSType bt = ct.getBaseType();
47 if(bt ==schemas.getAnyType() && ct.isMixed())
48 return true; // fresh mixed complex type
49
50 // there's no complex type in the inheritance tree yet
51 if (bt.isComplexType() &&
52 !bt.asComplexType().isMixed() &&
53 ct.isMixed() &&
54 ct.getDerivationMethod() == XSType.EXTENSION) {
55 if (!bgmBuilder.isGenerateMixedExtensions() && (ct.getContentType().asParticle() == null)) {
56 return false;
57 }
58 return true;
59 }
60
61 return false;
62 }
63
64 public void build(XSComplexType ct) {
65 XSContentType contentType = ct.getContentType();
66
67 boolean generateMixedExtensions = bgmBuilder.isGenerateMixedExtensions();
68 if (generateMixedExtensions) {
69 if (!(ct.getBaseType() == schemas.getAnyType() && ct.isMixed())) {
70 XSComplexType baseType = ct.getBaseType().asComplexType();
71 // build the base class
72 CClass baseClass = selector.bindToType(baseType, ct, true);
73 selector.getCurrentBean().setBaseClass(baseClass);
74 }
75 }
76
77 builder.recordBindingMode(ct, FALLBACK_CONTENT);
78 BIProperty prop = BIProperty.getCustomization(ct);
79
80 CPropertyInfo p;
81
82 if (generateMixedExtensions) {
83 List<XSComplexType> cType = ct.getSubtypes();
84 boolean isSubtyped = (cType != null) && (cType.size() > 0);
85
86 if (contentType.asEmpty() != null) {
87 if (isSubtyped) {
88 p = prop.createContentExtendedMixedReferenceProperty("Content", ct, null);
89 } else {
90 p = prop.createValueProperty("Content",false,ct,CBuiltinLeafInfo.STRING,null);
91 }
92 } else if (contentType.asParticle() == null) {
93 p = prop.createContentExtendedMixedReferenceProperty("Content", ct, null);
94 } else {
95 RawTypeSet ts = RawTypeSetBuilder.build(contentType.asParticle(), false);
96 p = prop.createContentExtendedMixedReferenceProperty("Content", ct, ts);
97 }
98
99 } else {
100 if(contentType.asEmpty()!=null) {
101 p = prop.createValueProperty("Content",false,ct,CBuiltinLeafInfo.STRING,null);
102 } else {
103 RawTypeSet ts = RawTypeSetBuilder.build(contentType.asParticle(),false);
104 p = prop.createReferenceProperty("Content", false, ct, ts, true, false, true, false);
105 }
106 }
107
108 selector.getCurrentBean().addProperty(p);
109
110 // adds attributes and we are through.
111 green.attContainer(ct);
112 }
113
114 }

mercurial